1 Star 2 Fork 2

oneday/wechat_spider

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 475 Bytes
一键复制 编辑 原始数据 按行查看 历史
liqiang 提交于 2020-10-14 19:19 . dockerfile export 8102 port #52
FROM node:10.16.3
WORKDIR /app
COPY package.json package-lock.json /app/
RUN npm install --only=prod
COPY . /app
# ubuntu 添加根证书相关操作
RUN cd ~ \
&& mkdir .anyproxy \
&& cd .anyproxy \
&& mv /app/certificates ~/.anyproxy/ \
&& cp ~/.anyproxy/certificates/rootCA.crt /usr/local/share/ca-certificates/ \
&& update-ca-certificates
# 修改时区
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
EXPOSE 8101 8104 8102
CMD ["node", "index.js"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mrH/wechat_spider.git
git@gitee.com:mrH/wechat_spider.git
mrH
wechat_spider
wechat_spider
master

搜索帮助