1 Star 2 Fork 0

kaycn/phantoscope

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 634 Bytes
一键复制 编辑 原始数据 按行查看 历史
れいげん あらたか 提交于 2020-05-11 17:06 . update dockerfile
# mkdir tmp/video
From ubuntu:bionic-20200219
RUN mkdir -p /app/tmp
COPY search /app
COPY requirements.txt /app/requirements.txt
WORKDIR /app
RUN sed -i 's/archive.ubuntu.com/mirrors.aliyun.com/g' /etc/apt/sources.list
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
gunicorn3 \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender1 \
libmysqlclient-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install -r /app/requirements.txt -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
CMD ["/usr/bin/gunicorn3", "-w", "4", "-b", "0.0.0.0:5000", "main:app"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lkaycn/phantoscope.git
git@gitee.com:lkaycn/phantoscope.git
lkaycn
phantoscope
phantoscope
master

搜索帮助