代码拉取完成,页面将自动刷新
同步操作将从 JayFong/docker-YApi 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
######## 构建 ########
FROM --platform=${BUILDPLATFORM:-amd64} node:12.16.3-alpine3.11 as builder
# 安装构建工具
RUN apk add --update --no-cache ca-certificates curl wget cmake build-base git bash python make gcc g++ zlib-dev autoconf automake file nasm \
&& update-ca-certificates
# YApi 版本
ENV YAPI_VERSION=1.9.2
# 编译脚本
WORKDIR /yapi/scripts
COPY . .
RUN yarn && yarn build
WORKDIR /yapi/vendors
# 拉取 YApi 源码
RUN git clone \
--branch "v${YAPI_VERSION}" \
--single-branch \
--depth 1 \
https://github.com/YMFE/yapi.git .
# 拷贝启动脚本
RUN cp /yapi/scripts/start.js ./start.js
# 执行一些准备工作
RUN node /yapi/scripts/prepare.js $(pwd)
# 安装依赖
RUN yarn
# 清理文件
RUN node /yapi/scripts/clean.js $(pwd)
# 构建应用
RUN yarn build-client
# 再次清理以删除构建缓存文件
RUN node /yapi/scripts/clean.js $(pwd)
# 删除脚本
RUN rm -rf /yapi/scripts
######## 镜像 ########
FROM node:12.16.3-alpine3.11
WORKDIR /yapi
COPY --from=builder /yapi .
EXPOSE 3000
CMD ["node", "/yapi/vendors/start.js"]
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。