We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0662395 commit 96d110aCopy full SHA for 96d110a
Dockerfile
@@ -1,7 +1,8 @@
1
FROM python:buster
2
WORKDIR /app
3
RUN mkdir data
4
-COPY . .
+COPY ./requirements.txt .
5
RUN pip3 install -r requirements.txt
6
+COPY . .
7
ENTRYPOINT ["python"]
8
CMD ["main.py"]
0 commit comments