diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c6fd354..0b1c66e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,7 +32,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.13" + python-version: "3.14" cache: "poetry" cache-dependency-path: "poetry.lock" @@ -161,7 +161,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.13" + python-version: "3.14" cache: "poetry" cache-dependency-path: "poetry.lock" @@ -204,7 +204,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.13" + python-version: "3.14" - name: "Download coverage data" uses: actions/download-artifact@v4 @@ -278,7 +278,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.13" + python-version: "3.14" cache: "pip" - name: Install Dependencies diff --git a/Dockerfile b/Dockerfile index 90a700c..bde47a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN npm run build:prod # use python:3.13-slim-bookworm as the base image for production ################################################################################# -FROM python:3.13-slim-bookworm AS production +FROM python:3.14-slim-bookworm AS production # Add user that will be used in the container RUN groupadd --system django && \