Adjustments

This commit is contained in:
2026-02-19 12:45:53 +01:00
parent 3e1a8cc619
commit 216d91c57d
2 changed files with 9 additions and 5 deletions

View File

@@ -1,9 +1,15 @@
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY package.json ./
COPY pnpm-lock.yaml ./
RUN pnpm install
COPY . .
RUN npm run build
RUN pnpm run build
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html