Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
Permalink
Branch: master
Find file Copy path
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time. Cannot retrieve contributors at this time
11 lines (7 sloc) 175 Bytes
FROM python:3.7.0
ADD server.py /
ADD static /
ADD templates /
ADD requirements.txt /
RUN pip install --requirement requirements.txt
ENTRYPOINT [ "python", "./server.py" ]
You can’t perform that action at this time.