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