From 69cf7308e3a3a218afffc2b74323e1ea80b3de01 Mon Sep 17 00:00:00 2001 From: Urban Modig Date: Sun, 5 Jul 2026 10:04:29 +0200 Subject: [PATCH] Bumped images --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 46f47eb..ceb8c40 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM node:20-alpine AS build +FROM node:24-alpine AS build WORKDIR /app ENV PNPM_HOME="/root/.local/share/pnpm" @@ -33,7 +33,7 @@ VITE_OIDC_SILENT_REDIRECT_URI=$VITE_OIDC_SILENT_REDIRECT_URI RUN pnpm build -FROM nginx:1.27-alpine AS runtime +FROM nginx:1.31-alpine AS runtime COPY ./.docker/nginx.conf /etc/nginx/conf.d/default.conf COPY --from=build /app/dist /usr/share/nginx/html HEALTHCHECK --interval=30s --timeout=3s --retries=3 CMD wget -qO- http://127.0.0.1/ || exit 1