加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 996 Bytes
一键复制 编辑 原始数据 按行查看 历史
guanfuchang 提交于 2021-12-23 21:42 . 添加docker部署脚本
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
EXPOSE 8002
CMD ./start.sh
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化