Skip to content

Commit c141d99

Browse files
committed
Updated dockerfile
1 parent 1dea7fd commit c141d99

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ RUN npm run build
88

99
FROM python:3.8.3-buster
1010
WORKDIR /www
11-
ADD backend .
11+
ADD backend/requirements.txt .
1212
ADD .env .
1313
RUN export $(cat .env | xargs)
1414
RUN pip install -r requirements.txt
15+
ADD backend .
1516
COPY --from=frontend /src/build frontend
1617
ENV PYTHONDONTWRITEBYTECODE 1
1718
ENV IS_DOCKER_COMPOSE true

0 commit comments

Comments
 (0)