diff options
author | 2024-07-24 10:45:49 +0200 | |
---|---|---|
committer | 2024-07-24 09:45:49 +0100 | |
commit | 81e30aeb8d1b56a634b82adb699639e04ee731f6 (patch) | |
tree | eb2a31b9aef7493a2b0aa42530800d5e4967ee67 | |
parent | Merge pull request #239 from python-discord/renovate/sentry-sdk-2.x (diff) |
Do not install recommended packages (#229)
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ FROM --platform=linux/amd64 ghcr.io/owl-corp/python-poetry-base:3.12-slim # Install build dependencies -RUN apt-get update && apt-get install -y libmagickwand-dev && apt autoclean && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install --no-install-recommends -y libmagickwand-dev && apt autoclean && rm -rf /var/lib/apt/lists/* # Install project dependencies WORKDIR /app |