From 2d9a33dd92068474c5c10710b7a71a1ef604caf8 Mon Sep 17 00:00:00 2001 From: Jacob Michelsen Date: Sun, 8 Oct 2023 17:30:05 +0200 Subject: [PATCH] Specified a newer Python base docker image Fixes #32 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9e8689d..a5b3fbc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use latest alpine-derived Python base image -FROM python:3-alpine +FROM python:3.11.6-alpine3.18 # Move to app directory @@ -13,4 +13,4 @@ COPY . . # Make sure run script is executable RUN chmod +rxxx ./run.sh -CMD sh run.sh \ No newline at end of file +CMD sh run.sh