Merge pull request #670 from maxking/dependabot/docker/postorius/alpine-3.19.0

Bump alpine from 3.18.4 to 3.19.0 in /postorius
This commit is contained in:
Abhilash Raj
2023-12-26 17:06:00 +05:30
committed by GitHub
6 changed files with 18 additions and 18 deletions

View File

@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:1.3
FROM alpine:3.18.4
FROM alpine:3.19.0
# Install packages and dependencies for postorius and hyperkitty Add user for
# executing apps, change ownership for uwsgi+django files and set execution
@@ -11,8 +11,8 @@ RUN --mount=type=cache,target=/root/.cache \
&& 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 \
&& python3 -m pip install postorius==1.3.7 \
&& python3 -m pip install --break-system-packages -U 'Django<4.2' pip setuptools wheel \
&& python3 -m pip install --break-system-packages postorius==1.3.7 \
uwsgi \
'psycopg2<2.9' \
dj-database-url \

View File

@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:1.3
FROM alpine:3.18.4
FROM alpine:3.19.0
ARG POSTORIUS_REF
ARG DJ_MM3_REF
@@ -15,8 +15,8 @@ RUN --mount=type=cache,target=/root/.cache \
&& 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 \
&& python3 -m pip install -U \
&& python3 -m pip install --break-system-packages -U pip setuptools wheel \
&& python3 -m pip install --break-system-packages -U \
git+https://gitlab.com/mailman/mailmanclient \
git+https://gitlab.com/mailman/postorius \
uwsgi \
@@ -25,8 +25,8 @@ RUN --mount=type=cache,target=/root/.cache \
mysqlclient \
typing \
django-utils-six \
&& python3 -m pip install -U 'Django<3.2' \
&& python3 -m pip install -U \
&& python3 -m pip install --break-system-packages -U 'Django<3.2' \
&& python3 -m pip install --break-system-packages -U \
git+https://gitlab.com/mailman/django-mailman3 \
&& apk del .build-deps \
&& addgroup -S mailman \