1 Star 6 Fork 1

苏晓尘/yapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 434 Bytes
一键复制 编辑 原始数据 按行查看 历史
黄小标 提交于 2020-04-25 22:29 . add Dockerfile
FROM node:12-alpine as builder
RUN apk add --no-cache git python make openssl tar gcc
COPY . /api/vendors
RUN cd /api/vendors && \
npm install --production --registry https://registry.npm.taobao.org
FROM node:12-alpine
MAINTAINER [email protected]
ENV TZ="Asia/Shanghai" HOME="/"
WORKDIR ${HOME}
COPY --from=builder /api/vendors /api/vendors
COPY config_example.json /api/config.json
EXPOSE 3000
ENTRYPOINT ["node"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mzweb/yapi.git
[email protected]:mzweb/yapi.git
mzweb
yapi
yapi
master

搜索帮助