From 42f6b36c38b7e1c3e0dac98dcb2d61c432bc300b Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Thu, 18 Dec 2025 10:37:17 -0500 Subject: [PATCH] feat(Docker): Remove unused apt dependencies These packages are now installed in the baseimage, so we don't need to install them here. See https://github.com/pelias/docker-baseimage/pull/37 --- Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index b9ecf55..a8b7000 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,5 @@ FROM pelias/baseimage -# install commands used by bin/download script -RUN apt-get update && \ - apt-get install -y jq lbzip2 pigz zstd && \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* - # working directory WORKDIR /code