diff --git a/Dockerfile b/Dockerfile index df2bd77..370aa53 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,9 @@ FROM python:3.13-slim-bullseye ARG INSTALL_GIT=false RUN if [ "$INSTALL_GIT" = "true" ]; then \ - apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*; \ + apt-get update && apt-get install -y --no-install-recommends \ + git \ + && rm -rf /var/lib/apt/lists/*; \ fi # Runtime dependency