This commit is contained in:
2026-05-19 16:47:57 +01:00
parent b30478a537
commit ad949474cd
11 changed files with 52 additions and 8 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM ghcr.io/pnpm/pnpm:latest as Builder
RUN pnpm runtime set node 22 -g
ENV CI=true
WORKDIR /app
COPY pnpm-lock.yaml /app
RUN pnpm fetch --prod
COPY . /app
# Built files are in ./build
RUN pnpm run build
FROM ghcr.io/static-web-server/static-web-server:latest
WORKDIR /
COPY --from=Builder /app/build /public