From f6c3d3d8b359a898253258a0bb1dadfc1ac06be9 Mon Sep 17 00:00:00 2001 From: Xavier Mitault Date: Thu, 19 Sep 2024 14:26:19 +0100 Subject: [PATCH] update Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1a61499..44e2e9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,7 @@ FROM python:3.12-slim-bookworm AS base +RUN apt-get update -y \ + && apt-get install -y gcc \ + && rm -rf /var/lib/apt/lists/* FROM base AS builder COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv