From 80b291e34057c710739a9c14f0993bfb24d11277 Mon Sep 17 00:00:00 2001 From: Christoph Marzell Date: Sun, 9 Nov 2025 12:12:12 +0100 Subject: [PATCH] add zip --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bd0f1b3..509c3ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ FROM base as build # Install packages needed to build gems RUN apt-get update -qq && \ - apt-get install --no-install-recommends -y build-essential git libpq-dev libvips pkg-config + apt-get install --no-install-recommends -y build-essential git libpq-dev libvips pkg-config zip # Install application gems COPY Gemfile Gemfile.lock ./ @@ -47,7 +47,7 @@ FROM base # Install packages needed for deployment RUN apt-get update -qq && \ - apt-get install --no-install-recommends -y curl libvips postgresql-client && \ + apt-get install --no-install-recommends -y curl libvips postgresql-client zip && \ rm -rf /var/lib/apt/lists /var/cache/apt/archives # Copy built artifacts: gems, application