1 Star 0 Fork 0

chonglin/apihub

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 439 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM node
RUN mkdir -p /usr/src/freeapi && chown -R node:node /usr/src/freeapi
WORKDIR /usr/src/freeapi
# Copy package json and yarn lock only to optimise the image building
COPY package.json yarn.lock ./
# copy prepare.js prior. It will be executed after package installation and before ROOT dir is cloned
COPY prepare.js ./
USER node
RUN yarn install --pure-lockfile
COPY --chown=node:node . .
EXPOSE 8080
CMD [ "npm", "start" ]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/godlinc/apihub.git
git@gitee.com:godlinc/apihub.git
godlinc
apihub
apihub
feat/video-tube

搜索帮助