From 463bb7625dbefaceebcc3a6549ab1c73347d1611 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Kleinekath=C3=B6fer?= Date: Thu, 4 Jan 2024 20:19:59 +0100 Subject: [PATCH] Fix Dockerfile --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 49018c45028..82a12f124a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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