From 8ff11f5400f8c20a81cf23bded5299ac7b0cb483 Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Sun, 21 Jun 2026 15:53:29 +0000 Subject: [PATCH] Fix Docker image --- WebDisplay/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebDisplay/Dockerfile b/WebDisplay/Dockerfile index 8015ca5..0c37d34 100644 --- a/WebDisplay/Dockerfile +++ b/WebDisplay/Dockerfile @@ -11,7 +11,7 @@ COPY . . RUN pnpm run build # production stage -FROM nginx:lts-alpine AS production-stage +FROM nginx:stable-alpine AS production-stage COPY nginx/default.conf /etc/nginx/conf.d/ RUN rm -rf /usr/share/nginx/html/* COPY --from=build-stage /app/dist /usr/share/nginx/html