2 Star 21 Fork 6

vertx-china/vertx-web-site

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 348 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM node:16-slim AS build
RUN mkdir -p /vertx/docs
COPY package.json package-lock.json /vertx/
COPY docs/package.json docs/package-lock.json /vertx/docs
WORKDIR /vertx
RUN npm i
COPY docs /vertx/docs/
RUN npm run update-docs
COPY . /vertx/
RUN npm run build
# Setup NGINX
FROM nginx:latest
COPY --from=build /vertx/out /usr/share/nginx/html
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/vertx-china/vertx-web-site.git
git@gitee.com:vertx-china/vertx-web-site.git
vertx-china
vertx-web-site
vertx-web-site
master

搜索帮助