From ee756107e97c7e8b4db99ef5749ad8ad8b4b2636 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Thu, 30 Jun 2022 08:38:26 +0200 Subject: [PATCH] Update python version in docker image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 02028e0..212d25a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ############################################## # Build virtualenv ############################################## -FROM python:3.10.4-bullseye AS venv +FROM python:3.10.5-bullseye AS venv # Prepare system ############################################## @@ -47,7 +47,7 @@ RUN git rev-parse HEAD | tee /version ############################################## # Main image ############################################## -FROM python:3.10.4-slim-bullseye as prod +FROM python:3.10.5-slim-bullseye as prod ENV TZ "Europe/Paris"