From 427683108f61d56ff3ec34f12de835d525a24e47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Quentin=20G=C3=A9r=C3=B4me?= Date: Mon, 27 May 2024 12:15:10 +0200 Subject: [PATCH] chore(Dockerfile): Remove the cache for apt-get to not rebuild the packages Don't know why but the cache forced the command to be run again every time --- images/blsq/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/images/blsq/Dockerfile b/images/blsq/Dockerfile index 7bdfe3b..c657106 100644 --- a/images/blsq/Dockerfile +++ b/images/blsq/Dockerfile @@ -7,9 +7,7 @@ LABEL org.opencontainers.image.licenses=MIT USER root # System libraries -RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ - --mount=type=cache,target=/var/lib/apt,sharing=locked \ - apt-get update && apt-get install -y libgdal-dev libudunits2-dev +RUN apt-get update && apt-get install -y libgdal-dev libudunits2-dev USER ${NB_UID} WORKDIR $HOME