From f37fc0f9f118ca180a78071e3cdecaf6fee99437 Mon Sep 17 00:00:00 2001 From: paul-corbalan Date: Mon, 11 Dec 2023 09:19:47 +0100 Subject: [PATCH] feat(devcontainer): Downgrade to Python 3.11 --- .devcontainer/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 01d2c4e..1edcb00 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,5 +1,5 @@ -# Get Python Debian Bookworm image -FROM python:bookworm +# Get Python 3.11 Debian Bookworm image +FROM python:3.11-bookworm # Install pip requirements COPY ../requirements.txt /tmp/requirements.txt