From 7ec77817d3bf438d669f19e4c115a91687d2fe67 Mon Sep 17 00:00:00 2001 From: Ethan Ho <53266718+ethho@users.noreply.github.com> Date: Sun, 22 Sep 2024 12:29:49 -0500 Subject: [PATCH] Use python:3.11-alpine base image instead of python:alpine python:alpine currently points to python:3.12-alpine, which does not include distutils, a dependency for otumat --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 05ffb46..ad468e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:alpine +FROM python:3.11-alpine COPY ./nginx/entrypoint.py /entrypoint.py RUN \