From 0e6ff98f03a83cea53606607ba3240ddbc413ec0 Mon Sep 17 00:00:00 2001 From: phil Date: Tue, 27 May 2025 16:44:13 +0200 Subject: [PATCH] CI: use slim base image --- Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 0ec45d1..357cc84 100644 --- a/Containerfile +++ b/Containerfile @@ -1,6 +1,7 @@ -FROM docker.io/library/python:latest +FROM docker.io/library/python:3.13-slim COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /usr/local/bin/ +COPY --from=docker.io/python:3.13 /usr/bin/git /usr/local/bin/git COPY . /app