From f8aa5585a0afdea34c6cc29a35c2bb7792600c8f Mon Sep 17 00:00:00 2001 From: Colin Copeland Date: Sun, 14 Jan 2024 15:24:25 -0500 Subject: [PATCH] use 3.12 in Dockerfile and GitHub actions --- .github/workflows/test.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5dced54a..6c81b5ba 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: '3.8' + python-version: '3.12' cache: "pip" cache-dependency-path: "requirements/**.txt" - uses: actions/setup-node@v4 diff --git a/Dockerfile b/Dockerfile index 6bd4b918..2ceeac7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ FROM dear_frontend as static_files RUN npm run build -FROM python:3.8-slim-bullseye as base +FROM python:3.12-slim-bookworm as base # Install packages needed to run your application (not build deps): # mime-support -- for mime types when serving static files