diff --git a/Dockerfile b/Dockerfile index 9d659a7..8a69fc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.12-slim AS builder # Install system dependencies -RUN apt-get update && apt-get install -y \ +RUN apt-get update && apt-get upgrade -y && apt-get install -y \ git \ curl \ && rm -rf /var/lib/apt/lists/* @@ -25,7 +25,7 @@ RUN uv pip install --python /opt/venv/bin/python . FROM python:3.12-slim # Install system dependencies needed at runtime -RUN apt-get update && apt-get install -y \ +RUN apt-get update && apt-get upgrade -y && apt-get install -y \ git \ && rm -rf /var/lib/apt/lists/*