From e23b71e11ce0516826b141b092c50e6e6ae49218 Mon Sep 17 00:00:00 2001 From: phil Date: Fri, 27 Jun 2025 17:46:03 +0200 Subject: [PATCH] Fix Containerfile --- Containerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index dc33d06..7f769b9 100644 --- a/Containerfile +++ b/Containerfile @@ -15,5 +15,6 @@ RUN pnpm run build FROM docker.io/library/nginx:alpine as production-stage RUN mkdir /app -COPY --from=build-stage /app/dist /app -COPY nginx.conf /etc/nginx/nginx.conf +COPY --from=build-stage /usr/share/nginx/html/oidc-test-web + +CMD ["nginx", "-g", "daemon off;"]