From 9f6fc42797c089f57b595f72fe7360198604a515 Mon Sep 17 00:00:00 2001 From: Aaron Miller Date: Tue, 27 Feb 2024 14:37:38 -0800 Subject: [PATCH] force base image --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 601749d..9248395 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ -ARG PYTHON_VERSION=3.11.7 -FROM python:${PYTHON_VERSION}-slim-bookworm as base +ARG PYTHON_VERSION=3.12.2 +#FROM python:${PYTHON_VERSION}-slim as base +FROM python:3.12.2-slim as base # Prevents Python from writing pyc files. ENV PYTHONDONTWRITEBYTECODE=1