1 Star 0 Fork 0

laiwei/flasky

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 381 Bytes
一键复制 编辑 原始数据 按行查看 历史
Miguel Grinberg 提交于 2017-08-05 00:28 . Chapter 17: Docker support (17d)
FROM python:3.6-alpine
ENV FLASK_APP flasky.py
ENV FLASK_CONFIG production
RUN adduser -D flasky
USER flasky
WORKDIR /home/flasky
COPY requirements requirements
RUN python -m venv venv
RUN venv/bin/pip install -r requirements/docker.txt
COPY app app
COPY migrations migrations
COPY flasky.py config.py boot.sh ./
# run-time configuration
EXPOSE 5000
ENTRYPOINT ["./boot.sh"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/itswl/flasky.git
git@gitee.com:itswl/flasky.git
itswl
flasky
flasky
master

搜索帮助