ki-frontend/Dockerfile

11 lines
135 B
Docker
Raw Normal View History

2021-06-14 22:27:23 +02:00
FROM node:14-alpine as builder
COPY . ./
RUN npm ci && npm run build
FROM nginx
COPY --from=builder /dist/ /usr/share/nginx/html/