From 167ffd7ee04ea2f3e108b079f416354f23ff3452 Mon Sep 17 00:00:00 2001 From: Stefan Haun Date: Sun, 5 Nov 2023 20:48:46 -0600 Subject: [PATCH] :arrow_up: Update python base image to 3.12 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ba253f5..bbaa7ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ADD . /git/ RUN git describe --always --dirty > /git-version.txt -FROM python:3.9 +FROM python:3.12 EXPOSE 8080 HEALTHCHECK --interval=10s CMD curl --fail http://localhost:8080/v0/health || exit 1