🚀 Staging environment, Nix shell, Biome formatter, update dependencies
All checks were successful
Build and deploy website / build (push) Successful in 56s

This commit is contained in:
2025-07-01 19:08:34 +02:00
parent 1fa2667deb
commit 3a1592db3e
30 changed files with 1674 additions and 1921 deletions

View File

@ -1,6 +1,8 @@
FROM node:lts-alpine AS base
WORKDIR /app
ARG mode
# By copying only the package.json and package-lock.json here, we ensure that the following `-deps` steps are independent of the source code.
# Therefore, the `-deps` steps will be skipped if only the source code changes.
COPY package.json pnpm-lock.yaml ./
@ -14,7 +16,11 @@ RUN npm exec -- pnpm install
FROM build-deps AS build
COPY . .
RUN npm exec -- pnpm run build
RUN if [ "$mode" = "staging" ]; then \
npm exec -- pnpm run staging; \
else \
npm exec -- pnpm run build; \
fi
FROM base AS runtime
COPY --from=prod-deps /app/node_modules ./node_modules
@ -23,4 +29,4 @@ COPY --from=build /app/dist ./dist
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
ENTRYPOINT node ./dist/server/entry.mjs
ENTRYPOINT exec node ./dist/server/entry.mjs