From b313ebc000c5e2500c41578ff4f1787601a6ce04 Mon Sep 17 00:00:00 2001 From: "Viv B." Date: Thu, 15 Jan 2026 10:55:53 +1100 Subject: [PATCH] Update and upgrade packages in Dockerfile Added command to update and upgrade packages in the Docker image. --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8689473..3134f00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,6 +45,9 @@ FROM alpine:3.22 WORKDIR /app +# Install package updates since image release +RUN apk update && apk --no-cache --quiet upgrade + # Install bash, postgresql-client RUN apk add \ --update \