2020-06-29 10:23:45 +09:00
|
|
|
FROM mcr.microsoft.com/powershell:latest AS prebuild
|
2020-06-29 07:39:07 +09:00
|
|
|
WORKDIR /src
|
|
|
|
COPY . .
|
2020-06-29 10:23:45 +09:00
|
|
|
RUN pwsh -File ./scripts/build_archives.ps1
|
|
|
|
|
|
|
|
FROM node:lts-buster AS build
|
|
|
|
WORKDIR /src
|
|
|
|
COPY --from=prebuild /src .
|
2020-06-29 07:39:07 +09:00
|
|
|
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"]
|