From 81d62b1591d97da1d62e7356bbcb66a6cd738e77 Mon Sep 17 00:00:00 2001 From: "Viv B." Date: Thu, 15 Jan 2026 13:48:39 +1100 Subject: [PATCH] chore(docker): Update and upgrade packages in Dockerfile Added package update command to Dockerfile. --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0ed7c696..ef3e0c65 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,9 @@ RUN adduser \ --no-create-home \ --uid "${UID}" \ "${USER}" + +# Install package updates since image release +RUN apk update && apk --no-cache --quiet upgrade # Install shards for caching COPY shard.yml shard.yml