We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e39acb6 commit 79e0566Copy full SHA for 79e0566
1 file changed
Dockerfile
@@ -10,11 +10,11 @@ LABEL Maintainer="antonin alves"
10
# i have chosen /usr/app/src
11
12
#to COPY the remote file at working directory in container
13
-COPY ./ .
+COPY ./ /app
14
# Now the structure looks like this '/usr/app/src/test.py'
15
16
RUN pip install -r requirements.txt
17
#CMD instruction should be used to run the software
18
#contained by your image, along with any arguments.
19
20
-ENTRYPOINT [ "python3", "main.py"]
+ENTRYPOINT [ "python3", "/app/main.py"]
0 commit comments