cs / Dockerfile
haoqi7's picture
Upload 2 files
f8a4c02
raw
history blame
279 Bytes
FROM python:3.6
LABEL maintainer="Lujia Zhong <[email protected]>"
COPY . /detectweb
WORKDIR /detectweb
RUN pip install -r requirements.txt -i https://mirror.baidu.com/pypi/simple && pip install gunicorn&&chmod 755 run_server.sh
EXPOSE 8080
ENTRYPOINT [ "./run_server.sh" ]