1 Star 11 Fork 1

hyjsunny/yeti

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 635 Bytes
一键复制 编辑 原始数据 按行查看 历史
hyjsunny 提交于 2022-05-20 11:32 . [fix] Dockerfile build error
FROM ubuntu:latest
ARG PROJECTNAME
ARG TZ=Asia/Shanghai
ENV PYTHONPATH=$PYTHONPATH:/opt/yeti/
# copy project
COPY $PROJECTNAME /opt/$PROJECTNAME
WORKDIR /opt/$PROJECTNAME/
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
echo $TZ > /etc/timezone && \
apt update -y && \
apt install -y python3 software-properties-common python3-distutils python3-apt wget vim && \
add-apt-repository -y ppa:deadsnakes/ppa && \
wget https://bootstrap.pypa.io/get-pip.py && \
python3 get-pip.py && \
pip3 install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
CMD ["/usr/bin/python3", "bin/yetid.py"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hyjsunny/yeti.git
git@gitee.com:hyjsunny/yeti.git
hyjsunny
yeti
yeti
master

搜索帮助