From e93b44c36e8208b453ea4563ff29222e29496e56 Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Fri, 26 Sep 2025 17:39:46 -0400 Subject: [PATCH] feat(docker): Remove unused dependency This removes the `unzip` package from the Docker image. It's already baked into our Pelias baseimage, so this change should have no impact. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a8dedcea3..623b40db7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM pelias/baseimage # downloader apt dependencies # note: this is done in one command in order to keep down the size of intermediate containers -RUN apt-get update && apt-get install --no-install-recommends -y unzip awscli && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install --no-install-recommends -y awscli && rm -rf /var/lib/apt/lists/* # change working dir ENV WORKDIR /code/pelias/openaddresses