1 Star 1 Fork 0

码上快乐/flask-restful-example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 838 Bytes
一键复制 编辑 原始数据 按行查看 历史
那些年踩过的坑 提交于 2020-07-05 12:45 . fix bug
FROM python:3.7-alpine
MAINTAINER QZQ
RUN echo http://mirrors.aliyun.com/alpine/v3.12/main > /etc/apk/repositories
RUN echo http://mirrors.aliyun.com/alpine/v3.12/community >> /etc/apk/repositories
RUN apk update
RUN apk --update add --no-cache gcc
RUN apk --update add --no-cache g++
RUN apk --update add --no-cache tzdata
RUN apk --update add --no-cache libffi-dev
RUN apk --update add --no-cache libxslt-dev
RUN apk --update add --no-cache jpeg-dev
ENV TIME_ZONE Asia/Shanghai
ENV PIPURL "https://pypi.tuna.tsinghua.edu.cn/simple"
RUN echo "${TIME_ZONE}" > /etc/timezone
RUN ln -sf /usr/share/zoneinfo/${TIME_ZONE} /etc/localtime
WORKDIR /logs
WORKDIR /projects
COPY . .
RUN pip --no-cache-dir install -i ${PIPURL} --upgrade pip
RUN pip --no-cache-dir install -i ${PIPURL} -r requirements.txt
RUN chmod +x run.sh
CMD ./run.sh
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qi_yongquan/flask-restful-example.git
git@gitee.com:qi_yongquan/flask-restful-example.git
qi_yongquan
flask-restful-example
flask-restful-example
master

搜索帮助