From 81e30aeb8d1b56a634b82adb699639e04ee731f6 Mon Sep 17 00:00:00 2001 From: jchristgit Date: Wed, 24 Jul 2024 10:45:49 +0200 Subject: [PATCH] Do not install recommended packages (#229) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 40789cf..128b9c5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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