fix: dockerfile

This commit is contained in:
s-prechtl 2024-09-08 00:06:26 +02:00
parent cfd4238a72
commit 9a2e8ebb46

View file

@ -1,6 +1,6 @@
FROM node:22-alpine AS builder
WORKDIR /app
COPY package*.json .
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build