11 lines
135 B
Docker
11 lines
135 B
Docker
|
FROM node:14-alpine as builder
|
||
|
|
||
|
COPY . ./
|
||
|
|
||
|
RUN npm ci && npm run build
|
||
|
|
||
|
|
||
|
FROM nginx
|
||
|
|
||
|
COPY --from=builder /dist/ /usr/share/nginx/html/
|