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;"]