Skip to content

Commit

Permalink
Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
felixoi authored Jan 4, 2024
1 parent 71ab160 commit 463bb76
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ ARG CROWDIN_PROJECT_ID
ARG CROWDIN_BASE_URL
ARG VERSION

RUN apk add --no-cache python3 py3-pip bash zip
RUN apk add --no-cache python3 bash zip

ENV VIRTUAL_ENV=/opt/venv
RUN python3 -m venv $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"

WORKDIR /app

Expand Down

0 comments on commit 463bb76

Please sign in to comment.