FROM python:3 MAINTAINER hullqin EXPOSE 8000 COPY . /root/gobang WORKDIR /root/gobang RUN pip config set global.index-url https://mirrors.cloud.tencent.com/pypi/simple RUN pip install -r requirements.txt CMD daphne -b 0.0.0.0 -p 8000 server:application