Skip to content

Commit 3470b0b

Browse files
fix WORKDIR
1 parent ec6764a commit 3470b0b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ RUN npm run build
99

1010
FROM osll/slides-base:20230202
1111

12+
WORKDIR /usr/src/project
13+
1214
ADD requirements.txt ./
1315
RUN python3.8 -m pip install -r requirements.txt
1416

15-
COPY --from=frontend_build /app/src /usr/src/project/src
17+
COPY --from=frontend_build /app/src ./src/
1618
ADD ./scripts/local_start.sh ./scripts/
1719
ADD ./db_versioning ./db_versioning/
1820
ADD ./app ./app/

0 commit comments

Comments
 (0)