File size: 252 Bytes
7092f63
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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