14 lines
290 B
Docker
14 lines
290 B
Docker
FROM node:20 AS builder
|
|
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
RUN npm run build || (echo "BUILD FEHLGESCHLAGEN" && cat /app/npm-debug.log || true)
|
|
|
|
|
|
FROM nginx:alpine
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|