1 Star 6 Fork 5

guanfuchang/FasterRunner

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
guanfuchang 提交于 2022-03-15 21:12 . 修复bug
FROM python:3.7-alpine
MAINTAINER Milton
# Install required packages and remove the apt packages cache when done.
RUN echo http://mirrors.aliyun.com/alpine/v3.12/main > /etc/apk/repositories \
&& echo http://mirrors.aliyun.com/alpine/v3.12/community >> /etc/apk/repositories \
&& apk update \
&& apk --update add --no-cache gcc \
&& apk --update add --no-cache g++ \
&& apk --update add --no-cache tzdata \
&& apk --update add --no-cache musl-dev \
&& apk --update add --no-cache linux-headers
ENV TIME_ZONE Asia/Shanghai
RUN echo "${TIME_ZONE}" > /etc/timezone \
&& ln -sf /usr/share/zoneinfo/${TIME_ZONE} /etc/localtime
ENV PYTHONUNBUFFERED 1
WORKDIR /app
VOLUME ["/app"]
COPY . .
ENV PIPURL "https://pypi.tuna.tsinghua.edu.cn/simple"
RUN pip --no-cache-dir install -i ${PIPURL} --upgrade pip \
&& pip install -i ${PIPURL} -r requirements.txt \
&& pip install -i ${PIPURL} gunicorn \
&& chmod +x start.sh
RUN pip uninstall -y markupsafe && pip install -i ${PIPURL} markupsafe==2.0.1
EXPOSE 8001
CMD ./start.sh
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guanfuchang/FasterRunner.git
git@gitee.com:guanfuchang/FasterRunner.git
guanfuchang
FasterRunner
FasterRunner
master

搜索帮助