File size: 279 Bytes
f8a4c02 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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" ]
|