From fcd4436fe4457b2a21ebebe6e1a1d3c7a663a370 Mon Sep 17 00:00:00 2001 From: Nat Dean-Lewis Date: Mon, 20 Apr 2026 09:52:17 +0100 Subject: [PATCH] CLDC-4229: upgrade at start of file --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0fb01f7a7..b85fc1ffe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,13 +2,13 @@ FROM ruby:3.4.9-alpine3.23 as base WORKDIR /app +# Upgrade base packages to pick up latest security patches +RUN apk upgrade --no-cache + # Add the timezone as it's not configured by default in Alpine RUN apk add --update --no-cache tzdata && \ cp /usr/share/zoneinfo/Europe/London /etc/localtime && \ - echo "Europe/London" > /etc/timezone - -# Upgrade base packages to pick up latest security patches -RUN apk upgrade --no-cache + echo "Europe/London" > /etc/timezone \ # build-base: compilation tools for bundle # yarn: node package manager