2 Star 0 Fork 1

realwrtoff/spider

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 1000 Bytes
一键复制 编辑 原始数据 按行查看 历史
realwrtoff 提交于 2020-10-30 13:28 . update docker file add
FROM daocloud.io/centos:7 as builder
# Install Python 3.6 在进行安装时,使用&&连接多行的原因时:减少镜像层数量,压缩镜像体积
RUN yum -y install epel-release gcc \
&& yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm \
&& yum -y install https://mirrors.aliyun.com/ius/ius-release-el7.rpm \
&& yum -y install python36u \
&& yum -y install python36u-pip \
&& yum -y install python36u-devel \
# clean up cache
&& yum -y clean all \
&& mkdir -p /app/log \
&& mkdir -p /app/data
COPY requirements.txt /requirements.txt
RUN pip3 install --user -r /requirements.txt -i http://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.tuna.tsinghua.edu.cn
#定义时区参数
ENV TZ=Asia/Shanghai
#设置时区
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone
ENV app /app
# not .., do u know why ?
ADD . ${app}
WORKDIR ${app}
# 自己的部分
CMD ["python3", "main.py"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/realwrtoff/spider.git
git@gitee.com:realwrtoff/spider.git
realwrtoff
spider
spider
master

搜索帮助