mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-02-13 19:02:45 +00:00
11 lines
175 B
Docker
11 lines
175 B
Docker
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" ] |