From db7d587d93ee8df7287479149e46f10603aee253 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Oct 2025 02:10:26 +0000 Subject: [PATCH] Update python Docker tag --- .github/workflows/python-app.yml | 2 +- .python-version | 2 +- app/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 7b00786..fd26c65 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -40,7 +40,7 @@ jobs: - name: Set up Python 3.13 uses: actions/setup-python@v6 with: - python-version: "3.13" + python-version: "3.14" - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/.python-version b/.python-version index 976544c..f982feb 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.13.7 +3.14.0 diff --git a/app/Dockerfile b/app/Dockerfile index 44b0795..14eb38d 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -4,7 +4,7 @@ ARG GID=1000 # # first stage for our base image -FROM python:3.13-alpine AS base +FROM python:3.14-alpine AS base COPY --chmod=0700 ./hardening_base.sh / RUN apk upgrade --no-cache && \