game / Dockerfile
zhzabcd's picture
Upload 9 files
7092f63 verified
raw
history blame contribute delete
252 Bytes
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