Fix Dockerfile; add resume

This commit is contained in:
2026-01-23 17:30:37 -08:00
parent ed7394cc49
commit 80bcbd5d22
7 changed files with 254 additions and 2 deletions
+3 -2
View File
@@ -2,10 +2,11 @@ FROM node:22-slim AS builder
WORKDIR /usr/src/app
COPY package.json .
COPY package-lock.json* .
RUN npm ci
RUN corepack enable
RUN pnpm i
FROM node:22-slim
WORKDIR /usr/src/app
COPY --from=builder /usr/src/app/ /usr/src/app/
COPY . .
CMD ["npx", "quartz", "build", "--serve"]
CMD ["pnpm", "quartz", "build", "--serve"]