From 533c2b4521db425f68473992436c978d07db829b Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Thu, 6 Jun 2024 13:41:54 +0100 Subject: [PATCH] build: update dockerfile python version 3.8 --> 3.11 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a93ff67..914fd63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8-alpine +FROM python:3.11-alpine COPY requirements.txt /tmp/ RUN pip install --requirement /tmp/requirements.txt