From 2b6b58e99aa044670eea665422b8c7d18cfeb35a Mon Sep 17 00:00:00 2001 From: phil Date: Wed, 25 Jun 2025 04:52:03 +0200 Subject: [PATCH] 0.0.9 --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 5e42c4b..dc33d06 100644 --- a/Containerfile +++ b/Containerfile @@ -7,10 +7,10 @@ RUN corepack enable FROM base as build-stage -COPY pnpm-lock.yaml /app WORKDIR /app +COPY pnpm-lock.yaml . RUN pnpm fetch --prod -COPY . /app +COPY . . RUN pnpm run build FROM docker.io/library/nginx:alpine as production-stage