1 Star 0 Fork 5

linuxlavender/Wtp_test

forked from 王星元/Wtp_test 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 591 Bytes
一键复制 编辑 原始数据 按行查看 历史
王星元 提交于 2021-03-06 17:06 . docker
# 继承python3.7镜像
FROM python:3.7
# 作者
MAINTAINER WangXingYua
# 设置python环境变量
ENV PYTHONUNBUFFERED 1
# 设置默认pip conf文件,指定pip源
COPY pip.conf /root/.pip/pip.conf
# 创建项目地址
RUN mkdir -p /Alpha
# 指定工作目录
WORKDIR /Alpha
# 将当前目录添加至指定目录
ADD . /Alpha
# pip安装依赖
RUN pip install -r requirements.txt
# 给deploy.sh添加执行权限,deploy为部署脚本
RUN chmod +x ./deploy.sh
# windows下编辑的sh文件每行会有多于的\r字符,需要执行命令删除
RUN sed -i 's/\r//' ./deploy.sh
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/linuxlavender/wtp_test.git
[email protected]:linuxlavender/wtp_test.git
linuxlavender
wtp_test
Wtp_test
master

搜索帮助