Skip to content

Commit 79e0566

Browse files
author
Antonin
committed
🚧 edit Dockerfile
1 parent e39acb6 commit 79e0566

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ LABEL Maintainer="antonin alves"
1010
# i have chosen /usr/app/src
1111

1212
#to COPY the remote file at working directory in container
13-
COPY ./ .
13+
COPY ./ /app
1414
# Now the structure looks like this '/usr/app/src/test.py'
1515

1616
RUN pip install -r requirements.txt
1717
#CMD instruction should be used to run the software
1818
#contained by your image, along with any arguments.
1919

20-
ENTRYPOINT [ "python3", "main.py"]
20+
ENTRYPOINT [ "python3", "/app/main.py"]

0 commit comments

Comments
 (0)