3 Star 6 Fork 6

tsbc/automagic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 826 Bytes
一键复制 编辑 原始数据 按行查看 历史
ray 提交于 2021-05-26 15:52 . 添加dockerfile 和 docker-compose.yml
FROM ubuntu:18.04
MAINTAINER ray<tsbc@vip.qq.com>
LABEL version="2.0" by="ray" descriptio="python3.6 django 3.2.3"
ENV TZ=Asia/Shanghai
ENV PATH=/usr/bin:$PATH
ENV DEBIAN_FRONTEND=noninteractive
ENV LANG C.UTF-8
RUN mkdir /opt/automagic
WORKDIR /opt/automagic
RUN set -x;apt-get update \
&& apt-get install -y vim \
&& apt-get install -y tzdata \
&& apt-get install -y python3 \
&& apt-get install -y python3-pip \
&& pip3 install --upgrade pip
COPY . /opt/automagic
RUN pip3 --no-cache-dir install -r /opt/automagic/requirements/base.txt \
-i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com
RUN pip3 --no-cache-dir install -r /opt/automagic/requirements/seleniumreq.txt \
-i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com
ENTRYPOINT ["python3","start.py"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/tsbc/automagic.git
git@gitee.com:tsbc/automagic.git
tsbc
automagic
automagic
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385