Initial Commit

This commit is contained in:
2023-07-10 10:17:17 +07:00
commit 48d1d02925
81 changed files with 24380 additions and 0 deletions
@@ -0,0 +1,23 @@
FROM node:16-alpine AS build
WORKDIR /var/www
RUN apk add --no-cache \
yarn
COPY . .
# Run dependencies needed to build API Reference
RUN yarn install
# Build docs
RUN cd docs \
&& yarn install \
&& sed -i "s/base: '\/',/base: '\/integration-boilerplate\/',/g" ./.vuepress/config.js \
&& cat ./.vuepress/config.js \
&& yarn api-extract \
&& yarn build
FROM nginx
COPY --from=build /var/www/docs/.vuepress/dist /usr/share/nginx/html/integration-boilerplate