9 lines
188 B
Docker
9 lines
188 B
Docker
FROM node:lts as builder
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN npm install
|
|
RUN npm run build
|
|
|
|
FROM nginx:latest
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
COPY gzip.conf /etc/nginx/conf.d
|