diff --git a/.github/actions/setup-python-install/action.yml b/.github/actions/setup-python-install/action.yml index 8c46621..ab6b57a 100644 --- a/.github/actions/setup-python-install/action.yml +++ b/.github/actions/setup-python-install/action.yml @@ -6,7 +6,7 @@ runs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.13" + python-version: "3.14" cache: "pip" cache-dependency-path: backend/requirements.txt - name: Install system dependencies diff --git a/backend/Dockerfile b/backend/Dockerfile index ab51872..0693978 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,5 +1,5 @@ ## Base stage with dependencies -FROM python:3.13-slim AS base +FROM python:3.14-slim AS base WORKDIR /app