images / DockerFile
asv7j's picture
Update DockerFile
85d28ac verified
raw
history blame
153 Bytes
FROM python:3.9
WORKDIR /python-docker
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
CMD ["python3", "app.py"]