From 60edeb2a85288771f32f2d2ba1e1be21b72504ae Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Wed, 27 Sep 2023 18:15:45 -0500 Subject: [PATCH] Update Dockerfile version to match Gemfile Looks like the version was bumped in 6e9d34f0c40cc0bb3566ceed0b936c46f40dd269 but the Docker build hasn't caught up. Easy fix! --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c2a41fcf0..9aefad012 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.0.3-alpine3.15 AS builder +FROM ruby:3.1.4-alpine3.18 AS builder LABEL maintainer="jeanine@littleforestconsulting.com" @@ -26,13 +26,14 @@ COPY . . ### BUILD STEP DONE ### -FROM ruby:3.0.3-alpine3.15 +FROM ruby:3.1.4-alpine3.18 ARG RAILS_ROOT=/usr/src/app/ ARG USER_ID RUN apk update && apk upgrade && apk add --update --no-cache \ bash \ + gcompat \ imagemagick \ nodejs \ postgresql-client \