From 6e1c2d2672faf53d70fa8e9e26568fc32251634c Mon Sep 17 00:00:00 2001 From: Ivan Cvitkovic Date: Fri, 1 Nov 2024 09:26:50 -0700 Subject: [PATCH] Downgrade to 3.9 (bullseye) --- .github/workflows/test.yaml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a86b489..418e03f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -6,7 +6,7 @@ on: [push] jobs: test: runs-on: ubuntu-latest - container: python:3.11 + container: python:3.9 # Service containers to run with `container-job` services: # Label used to access the service container diff --git a/Dockerfile b/Dockerfile index 27785fb..97a9791 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11 +FROM python:3.9 WORKDIR /opt/app