From 40e22201603d2da208d2d9078d916b906a6ce16d Mon Sep 17 00:00:00 2001 From: Nat Dean-Lewis Date: Fri, 17 Apr 2026 14:46:40 +0100 Subject: [PATCH] CLDC-4229: update alpine to 3.22 in dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 88a7e6a79..bccab4e23 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.4.4-alpine3.20 as base +FROM ruby:3.4.4-alpine3.22 as base WORKDIR /app @@ -10,7 +10,7 @@ RUN apk add --update --no-cache tzdata && \ # build-base: compilation tools for bundle # yarn: node package manager # postgresql-dev: postgres driver and libraries -RUN apk add --no-cache build-base=0.5-r3 busybox=1.36.1-r29 nodejs=20.15.1-r0 yarn=1.22.22-r0 bash=5.2.26-r0 libpq-dev yaml-dev linux-headers +RUN apk add --no-cache build-base busybox nodejs yarn bash libpq-dev yaml-dev linux-headers # Bundler version should be the same version as what the Gemfile.lock was bundled with RUN gem install bundler:2.6.4 --no-document