From 0759a046115e6d6cf064a91bc65573401f6d246d Mon Sep 17 00:00:00 2001 From: tebarius Date: Wed, 4 Feb 2026 23:10:30 +0100 Subject: [PATCH] add upgrade packages to Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae34b7a..24b045c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,8 @@ FROM nginxinc/nginx-unprivileged:stable-alpine-slim LABEL authors="tebarius" LABEL description="nginx_with_404_and_502_games" -COPY ./games /usr/share/nginx/html +USER root +RUN apk upgrade --no-cache USER nginx +COPY ./games /usr/share/nginx/html