From a113db9f541cf39ab6fcc361060ebb1418ec1a10 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Jun 2024 13:28:55 +0000 Subject: [PATCH 1/2] Bump alpine from 3.19 to 3.20 in /core Bumps alpine from 3.19 to 3.20. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- core/Dockerfile | 2 +- core/Dockerfile.dev | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/Dockerfile b/core/Dockerfile index 65a13e0..0f01b66 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -1,6 +1,6 @@ # syntax = docker/dockerfile:1.3 # Use 3.15 for Core since it has Python 3.9 -FROM alpine:3.19 +FROM alpine:3.20 # Add requirements file. COPY requirements.txt /tmp/ diff --git a/core/Dockerfile.dev b/core/Dockerfile.dev index 7064e34..b297afb 100644 --- a/core/Dockerfile.dev +++ b/core/Dockerfile.dev @@ -1,6 +1,6 @@ # syntax = docker/dockerfile:1.3 # Use 3.15 for Core since it has Python 3.9 -FROM alpine:3.19 +FROM alpine:3.20 # Set the commits that we are building. ARG CORE_REF From 622e624c3e44255f733a0cf5455a340e06106579 Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Fri, 20 Sep 2024 12:10:44 +0000 Subject: [PATCH 2/2] Remove version constraint of gunicorn --- core/Dockerfile | 1 - core/Dockerfile.dev | 1 - 2 files changed, 2 deletions(-) diff --git a/core/Dockerfile b/core/Dockerfile index 0f01b66..886305f 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -15,7 +15,6 @@ RUN --mount=type=cache,target=/root/.cache \ && 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 --break-system-packages -U pip setuptools wheel \ && python3 -m pip install --break-system-packages psycopg2 \ - gunicorn==19.9.0 \ pymysql \ -r /tmp/requirements.txt \ 'importlib-resources<6.0.0' \ diff --git a/core/Dockerfile.dev b/core/Dockerfile.dev index b297afb..37f2da9 100644 --- a/core/Dockerfile.dev +++ b/core/Dockerfile.dev @@ -18,7 +18,6 @@ RUN --mount=type=cache,target=/root/.cache \ && python3 -m pip install --break-system-packages \ git+https://gitlab.com/mailman/mailman \ git+https://gitlab.com/mailman/mailman-hyperkitty \ - gunicorn==19.9.0 \ && apk del build-deps \ && adduser -S mailman