mirror of
https://github.com/felixlohmeier/pandas-docker.git
synced 2025-03-30 00:00:37 +01:00
8 lines
112 B
Docker
8 lines
112 B
Docker
FROM python:3.9.7-slim
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN pip install --no-cache-dir -v pandas==1.3.3
|
|
|
|
CMD [ "python" ]
|