From 075b46d0507bd855acfa65e1b31b74e5be0f48ff Mon Sep 17 00:00:00 2001 From: tobi Date: Wed, 15 Oct 2025 11:24:54 +0200 Subject: [PATCH] [chore] Update runtime docker container with apk upgrade (#102) Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/102 Co-authored-by: tobi Co-committed-by: tobi --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8b882311f..96640840e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,9 @@ RUN yarn && yarn build:production ### RUNTIME IMAGE ### FROM nginx:alpine AS runtime +# Ensure deps up to date. +RUN apk upgrade --update --no-cache + # Copy bigger nested stuff. COPY --from=builder /build/public/packs/js/flavours/glitch /usr/share/nginx/html/packs/js/flavours/glitch COPY --from=builder /build/public/packs/js/flavours/vanilla /usr/share/nginx/html/packs/js/flavours/vanilla