docs/Dockerfile

10 lines
274 B
Docker

FROM node:15.5.1-alpine3.12 AS build
WORKDIR /app
COPY package.json ./
RUN yarn
COPY . ./
RUN yarn build
# final image
FROM fholzer/nginx-brotli:v1.19.1 AS final
COPY --from=build /app/src/.vuepress/dist /usr/share/nginx/html
COPY ./nginx.conf /etc/nginx/nginx.conf