Skip to content

Commit

Permalink
Updating src location in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ReTeam Labs committed May 8, 2020
1 parent a5bc6cc commit 902ed3a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM python:3.8

WORKDIR /app
WORKDIR /src/app

COPY requirements.txt /app
COPY requirements.txt /src/app
RUN pip install -r requirements.txt

COPY . /app
COPY . /src/app

CMD ["python", "/app/app.py"]
CMD ["python", "/src/app/app.py"]

0 comments on commit 902ed3a

Please sign in to comment.