Skip to content

Commit 5faff0e

Browse files
mvoed WORKDIR declaration to different spot of dockerfile
1 parent 089db37 commit 5faff0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile.dash

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ FROM python:3.7.7-slim-buster
22

33
COPY ./requirements.txt /app/requirements.txt
44

5-
WORKDIR /code
6-
75
RUN pip install -q -r requirements.txt
86

9-
COPY . .
7+
WORKDIR code/
8+
9+
COPY src src
1010

1111
EXPOSE $PORT
1212

0 commit comments

Comments
 (0)