From 8c88815a2fa5ec7ee1b5f9109cb558d30af5eff7 Mon Sep 17 00:00:00 2001 From: Thomas Queste Date: Wed, 18 Sep 2024 18:09:08 +0200 Subject: [PATCH] fix: move pytz from global (alpine) to python venv (#160) --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f75db3d..b9dbb11 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,10 +38,9 @@ RUN apk add --no-cache --virtual=build-dependencies \ tzdata \ wget \ python3 \ - py3-tz \ py3-pip \ && python -m venv /venv \ - && /venv/bin/pip install --no-cache-dir radicale==$VERSION passlib[bcrypt] \ + && /venv/bin/pip install --no-cache-dir radicale==$VERSION passlib[bcrypt] pytz \ && apk del --purge build-dependencies \ && addgroup -g $BUILD_GID radicale \ && adduser -D -s /bin/false -H -u $BUILD_UID -G radicale radicale \