mirror of
https://github.com/felixlohmeier/pandas-docker.git
synced 2025-03-30 00:00:37 +01:00
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" ]
|