1 Star 0 Fork 59

郭世锋2017/sapic

forked from staugur/sapic 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
staugur 提交于 2021-01-20 14:45 . update docs
# -- base python --
FROM python:3.7-alpine AS base
LABEL maintainer=me@tcw.im
WORKDIR /picbed
# -- build dependencies with alpine --
#FROM python:3.7-alpine AS build
#ARG ALPINEMIRROR=dl-cdn.alpinelinux.org
#ARG PIPMIRROR=https://pypi.tuna.tsinghua.edu.cn/simple
#RUN sed -i "s/dl-cdn.alpinelinux.org/$ALPINEMIRROR/g" /etc/apk/repositories && \
# apk add --no-cache gcc musl-dev libffi-dev make && \
# rm -fr /var/cache/apk/*
#COPY requirements /requirements
#RUN pip install --timeout 30 --index $PIPMIRROR --user --no-cache-dir --no-warn-script-location -r /requirements/all.txt
# -- build dependencies with debian --
FROM python:3.7-slim AS build
ARG PIPMIRROR=https://pypi.org/simple
COPY requirements /requirements
RUN pip install --timeout 30 --index $PIPMIRROR --user --no-cache-dir --no-warn-script-location -r /requirements/all.txt
# -- app environment --
FROM base
ENV LOCAL_PKG="/root/.local"
ENV picbed_isrun=true
COPY --from=build ${LOCAL_PKG} ${LOCAL_PKG}
RUN ln -sf ${LOCAL_PKG}/bin/flask ${LOCAL_PKG}/bin/gunicorn /bin/ && \
ln -sf $(which python) /python && \
sed -i "s#$(which python)#/python#" /bin/gunicorn
COPY src /picbed
ENTRYPOINT ["gunicorn", "app:app", "-c", "sapicd.py"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/QQ70921992/picbed.git
git@gitee.com:QQ70921992/picbed.git
QQ70921992
picbed
sapic
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385