Skip to content

Commit

Permalink
Oprava sestavení docker kontejneru
Browse files Browse the repository at this point in the history
  • Loading branch information
janchaloupka committed Dec 4, 2023
1 parent bcc936f commit f0d2dbd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ WORKDIR /app
VOLUME ["/data"]

COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
RUN apk add --no-cache --virtual .build-deps gcc musl-dev && \
pip3 install -r requirements.txt && \
apk del .build-deps

ENV APP_ENV=docker

Expand Down

0 comments on commit f0d2dbd

Please sign in to comment.