11 lines
291 B
Docker
11 lines
291 B
Docker
FROM node:22-alpine AS builder
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm ci --ignore-scripts
|
|
COPY . .
|
|
RUN ./node_modules/.bin/ng build --configuration production
|
|
|
|
FROM nginx:alpine
|
|
COPY --from=builder /app/dist/test/browser /usr/share/nginx/html
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"] |