1 Star 0 Fork 0

Xiaoni-61/CourseScheduling-Web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 525 Bytes
一键复制 编辑 原始数据 按行查看 历史
jennyzeng 提交于 2017-07-16 18:11 . update requirements
FROM python:3.5-slim
# MAINTAINER Nick Janetakis <[email protected]>
ENV INSTALL_PATH /CourseScheduling
RUN mkdir -p $INSTALL_PATH
WORKDIR $INSTALL_PATH
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
#CMD git clone [email protected]:flask-admin/flask-admin.git $INSTALL_PATH
#RUN cd $INSTALL_PATH/flask-admin
#RUN python $INSTALL_PATH/flask-admin/setup.py install
COPY . .
RUN pip install --editable .
CMD gunicorn -b 0.0.0.0:8000 --access-logfile - "CourseScheduling.app:create_app()"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaoni_61/CourseScheduling-Web.git
[email protected]:xiaoni_61/CourseScheduling-Web.git
xiaoni_61
CourseScheduling-Web
CourseScheduling-Web
master

搜索帮助