diff --git a/core/Dockerfile b/core/Dockerfile index c917d15..0abe1db 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -15,7 +15,7 @@ RUN --mount=type=cache,target=/root/.cache \ libffi-dev \ # Mailman html to plaintext conversion uses lynx. # psutil needs linux-headers to compile on musl c library. - && apk add --no-cache bash su-exec postgresql-client mysql-client curl python3 py3-pip linux-headers py-cryptography mariadb-connector-c lynx \ + && apk add --no-cache bash su-exec postgresql-client mysql-client curl python3 py3-pip linux-headers py-cryptography mariadb-connector-c lynx tzdata \ && python3 -m pip install -U pip setuptools wheel \ && python3 -m pip install psycopg2 \ gunicorn==19.9.0 \ diff --git a/core/Dockerfile.dev b/core/Dockerfile.dev index 4dfdaaf..8915b43 100644 --- a/core/Dockerfile.dev +++ b/core/Dockerfile.dev @@ -17,7 +17,7 @@ RUN --mount=type=cache,target=/root/.cache \ && apk add --no-cache --virtual build-deps gcc python3-dev musl-dev \ postgresql-dev git libffi-dev g++ \ && apk add --no-cache bash su-exec postgresql-client mysql-client \ - curl python3 py3-pip linux-headers py-cryptography mariadb-connector-c \ + curl python3 py3-pip linux-headers py-cryptography mariadb-connector-c tzdata \ && python3 -m pip install -U psycopg2 pymysql setuptools wheel \ && python3 -m pip install \ git+https://gitlab.com/mailman/mailman \ diff --git a/postorius/Dockerfile b/postorius/Dockerfile index d44a78c..1d75e60 100644 --- a/postorius/Dockerfile +++ b/postorius/Dockerfile @@ -13,7 +13,7 @@ RUN --mount=type=cache,target=/root/.cache \ set -ex \ && apk add --no-cache --virtual .build-deps gcc libc-dev linux-headers \ postgresql-dev mariadb-dev mariadb-connector-c python3-dev libffi-dev openldap-dev cargo rust \ - && apk add --no-cache --virtual .mailman-rundeps bash sassc \ + && apk add --no-cache --virtual .mailman-rundeps bash sassc tzdata \ postgresql-client mysql-client py3-mysqlclient curl mailcap gettext \ python3 py3-pip libffi libuuid pcre-dev py-cryptography \ && python3 -m pip install -U 'Django<4.2' pip setuptools wheel \ diff --git a/postorius/Dockerfile.dev b/postorius/Dockerfile.dev index 815e706..665eaab 100644 --- a/postorius/Dockerfile.dev +++ b/postorius/Dockerfile.dev @@ -17,7 +17,7 @@ RUN --mount=type=cache,target=/root/.cache \ set -ex \ && apk add --no-cache --virtual .build-deps gcc libc-dev linux-headers \ postgresql-dev mariadb-dev mariadb-connector-c python3-dev libffi-dev git cargo rust \ - && apk add --no-cache --virtual .mailman-rundeps bash sassc \ + && apk add --no-cache --virtual .mailman-rundeps bash sassc tzdata \ postgresql-client mysql-client py3-mysqlclient curl mailcap \ python3 py3-pip libffi gettext py-cryptography \ && python3 -m pip install -U pip setuptools wheel \ diff --git a/web/Dockerfile b/web/Dockerfile index fed84a3..d820377 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -15,7 +15,7 @@ RUN --mount=type=cache,target=/root/.cache \ set -ex \ && apk add --no-cache --virtual .build-deps gcc libc-dev linux-headers \ postgresql-dev mariadb-dev mariadb-connector-c python3-dev libffi-dev openldap-dev cargo rust \ - && apk add --no-cache --virtual .mailman-rundeps bash sassc \ + && apk add --no-cache --virtual .mailman-rundeps bash sassc tzdata \ postgresql-client mysql-client py3-mysqlclient curl mailcap gettext \ python3 py3-pip xapian-core xapian-bindings-python3 libffi pcre-dev py-cryptography \ && python3 -m pip install -U 'Django<4.2' pip setuptools wheel \ diff --git a/web/Dockerfile.dev b/web/Dockerfile.dev index 978ab0f..af03e87 100644 --- a/web/Dockerfile.dev +++ b/web/Dockerfile.dev @@ -18,7 +18,7 @@ RUN --mount=type=cache,target=/root/.cache \ set -ex \ && apk add --no-cache --virtual .build-deps gcc libc-dev linux-headers git \ postgresql-dev mariadb-dev mariadb-connector-c python3-dev libffi-dev openldap-dev cargo rust \ - && apk add --no-cache --virtual .mailman-rundeps bash sassc pcre-dev \ + && apk add --no-cache --virtual .mailman-rundeps bash sassc pcre-dev tzdata \ python3 py3-pip postgresql-client mysql-client py3-mysqlclient \ curl mailcap xapian-core xapian-bindings-python3 libffi gettext py-cryptography \ && python3 -m pip install -U pip setuptools wheel \