gctGenerator/Dockerfile

12 lines
219 B
Text
Raw Normal View History

2020-06-29 07:39:07 +09:00
FROM node:lts-buster AS build
WORKDIR /src
COPY . .
RUN yarn
RUN yarn build
FROM httpd:latest AS final
WORKDIR /usr/local/apache2/htdocs/
COPY --from=build /src/docs/.vuepress/dist .
EXPOSE 80
CMD ["httpd-foreground"]