We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6bae1a commit b356fa2Copy full SHA for b356fa2
1 file changed
app/Dockerfile
@@ -1,8 +1,9 @@
1
FROM python:3.7
2
3
-RUN mkdir /app
4
-WORKDIR /app
5
-ADD . /app/
+RUN mkdir /wd
+COPY /app/ /wd/
+WORKDIR /wd
6
+
7
8
EXPOSE 5000
-CMD ["python", "/app/main.py"]
9
+CMD ["python", "main.py"]
0 commit comments