From df0d065705d983e7148581b5cbf5f7a67ffd63a3 Mon Sep 17 00:00:00 2001 From: mrT23 Date: Sun, 11 May 2025 17:17:58 +0300 Subject: [PATCH] fix: update Docker base image to slim version and install required dependencies --- Dockerfile.github_action | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 .