From b3022a458fe1a8251248477e6bc21e4434e18d55 Mon Sep 17 00:00:00 2001 From: Geoff Wilson Date: Tue, 3 Sep 2024 11:10:41 -0400 Subject: [PATCH] Add gcompat package to runtime image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e5ec729..4b0c5bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ RUN bundle exec bootsnap precompile app/ lib/ FROM ruby:$RUBY_VERSION-alpine # Install runtime dependencies -RUN apk add --no-cache curl jemalloc sqlite-libs vips tzdata +RUN apk add --no-cache curl gcompat jemalloc sqlite-libs vips tzdata ENV RAILS_ENV="production" \ RAILS_ROOT="/app" \