diff --git a/Dockerfile.github_action b/Dockerfile.github_action index b95bbdb6..458ac78a 100644 --- a/Dockerfile.github_action +++ b/Dockerfile.github_action @@ -1,4 +1,6 @@ -FROM python:3.12 as base +FROM python:3.12.10-slim AS base + +RUN apt update && apt install --no-install-recommends -y git curl && apt-get clean && rm -rf /var/lib/apt/lists/* WORKDIR /app ADD pyproject.toml .