websucker-pip/mongo/Dockerfile

7 lines
122 B
Docker
Raw Normal View History

2023-04-06 10:26:50 +00:00
FROM python:3.9
RUN mkdir /app
COPY requirements.txt /app
RUN pip install -r requirements.txt
COPY *.py /app
WORKDIR /app