8 lines
113 B
Docker
8 lines
113 B
Docker
|
FROM python:3.6.3-slim
|
||
|
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
RUN pip install --no-cache-dir -v pandas==0.20.3
|
||
|
|
||
|
CMD [ "python" ]
|