From d69ab17819ac103e81d217a7a5464b6e2fd42aef Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Sun, 4 Aug 2024 13:31:04 -0400 Subject: [PATCH] Dockerfile: use our own image Signed-off-by: Vincent Batts --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c95ad6f..ff21be1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,7 @@ -FROM python:3.11-slim as python-base +FROM r.batts.cloud/debian:bookworm as python-base +RUN apt update && \ + apt install -y --no-install-recommends python3 && \ + apt clean all && rm -rf /var/lib/apt/lists/* ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 \ POETRY_HOME="/opt/poetry" \