1 Star 0 Fork 17

peterliu/DBlog

forked from wu-clan/DBlog 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 608 Bytes
一键复制 编辑 原始数据 按行查看 历史
wu-clan 提交于 2022-09-02 13:56 . ✨ update docker containers conf
FROM python:3.8-slim
COPY . /blog_web
WORKDIR /blog_web
RUN sed -i 's/deb.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list \
&& apt-get update \
&& apt upgrade -y \
&& apt-get install -y libc6-dev gcc mime-support \
&& pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple \
&& pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple \
&& pip install uwsgi -i https://pypi.tuna.tsinghua.edu.cn/simple \
&& apt-get remove -y gcc libc6-dev \
&& rm -rf /var/lib/apt/lists/*
ENV TZ = Asia/Shanghai
EXPOSE 8001
CMD python manage.py
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/youzyliu/DBlog.git
git@gitee.com:youzyliu/DBlog.git
youzyliu
DBlog
DBlog
master

搜索帮助