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