From a7ae0e257076e5aeb32f0333de79b8be6a88a19f Mon Sep 17 00:00:00 2001 From: schwering Date: Fri, 22 Sep 2023 18:29:59 +0200 Subject: [PATCH] Fix python version in Dockerfile (#490) --- contributing/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contributing/Dockerfile b/contributing/Dockerfile index 2c705f1e..787abf15 100644 --- a/contributing/Dockerfile +++ b/contributing/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9.16-slim-bullseye +FROM python:3.11-slim RUN apt-get update \ && apt-get install -y --no-install-recommends git make zsh-theme-powerlevel9k \ @@ -30,4 +30,4 @@ RUN export JAVA_HOME # Clean up RUN apt-get autoremove -y \ && apt-get clean -y \ - && rm -rf /var/lib/apt/lists/* \ No newline at end of file + && rm -rf /var/lib/apt/lists/*