From 13887afa1493d16b13a63d7e0888e8cec3ce7552 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 08:56:39 +0000 Subject: [PATCH 1/4] Bump python from 3.13-slim to 3.14-slim Bumps python from 3.13-slim to 3.14-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3fdab1f..f4e31fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM python:3.13-slim as builder +FROM python:3.14-slim as builder WORKDIR /app @@ -19,7 +19,7 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Runtime stage -FROM python:3.13-slim +FROM python:3.14-slim WORKDIR /app From 3a6b4be3ab2f6724acb9a824b1bfbdf7532b5a60 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 09:03:54 +0000 Subject: [PATCH 2/4] Bump pymysql from 1.1.1 to 1.1.2 Bumps [pymysql](https://github.com/PyMySQL/PyMySQL) from 1.1.1 to 1.1.2. - [Release notes](https://github.com/PyMySQL/PyMySQL/releases) - [Changelog](https://github.com/PyMySQL/PyMySQL/blob/main/CHANGELOG.md) - [Commits](https://github.com/PyMySQL/PyMySQL/compare/v1.1.1...v1.1.2) --- updated-dependencies: - dependency-name: pymysql dependency-version: 1.1.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a50dac9..b806ca2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,4 +12,4 @@ requests==2.32.5 # Database drivers psycopg[binary,pool]==3.2.3 -PyMySQL==1.1.1 +PyMySQL==1.1.2 From 1ad8975f667fe2de59aff162a830dd0f45f3fe2f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 09:04:08 +0000 Subject: [PATCH 3/4] Bump psycopg[binary,pool] from 3.2.3 to 3.2.10 Bumps [psycopg[binary,pool]](https://github.com/psycopg/psycopg) from 3.2.3 to 3.2.10. - [Changelog](https://github.com/psycopg/psycopg/blob/master/docs/news.rst) - [Commits](https://github.com/psycopg/psycopg/compare/3.2.3...3.2.10) --- updated-dependencies: - dependency-name: psycopg[binary,pool] dependency-version: 3.2.10 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a50dac9..74ac4c3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,5 +11,5 @@ Werkzeug==3.1.3 requests==2.32.5 # Database drivers -psycopg[binary,pool]==3.2.3 +psycopg[binary,pool]==3.2.10 PyMySQL==1.1.1 From 4c688d4aa9cfae3a6d99166e84d823f6fd71409c Mon Sep 17 00:00:00 2001 From: Timeraider <57343973+GitTimeraider@users.noreply.github.com> Date: Mon, 13 Oct 2025 11:57:51 +0200 Subject: [PATCH 4/4] Update python --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f4e31fd..8bbfe2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,8 +39,8 @@ RUN groupadd -r -g 1000 appgroup \ && mkdir -p /app/instance \ && chown -R appuser:appgroup /app -# Copy installed packages from builder stage -COPY --from=builder /usr/local/lib/python3.13/site-packages /usr/local/lib/python3.13/site-packages +# Copy installed packages from builder stage (version-agnostic) +COPY --from=builder /usr/local/lib/ /usr/local/lib/ COPY --from=builder /usr/local/bin /usr/local/bin # Copy application files and set ownership