From 8629994eb64f3d7094bba5742f2524d9fe26b082 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Mon, 2 Jun 2025 21:32:00 -0700 Subject: [PATCH] fix docker build issues - pnpm-lock instead of package-lock - fix build out directory --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9c79ba97..865b2f18 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN pnpm run build:web # --- Production stage FROM nginx:alpine-slim -COPY --chown=nginx:nginx --from=builder /app/release/app/dist/web /usr/share/nginx/html +COPY --chown=nginx:nginx --from=builder /app/out/web /usr/share/nginx/html COPY ./settings.js.template /etc/nginx/templates/settings.js.template COPY ng.conf.template /etc/nginx/templates/default.conf.template