mirror of https://github.com/dirtbags/moth.git
9 lines
178 B
Docker
9 lines
178 B
Docker
|
FROM python:3
|
||
|
|
||
|
COPY tools/devel-server.py /pp/
|
||
|
COPY tools/moth.py /pp/
|
||
|
COPY tools/mistune.py /pp/
|
||
|
COPY tools/answer_words.txt /pp/
|
||
|
|
||
|
ENTRYPOINT ["python3", "/pp/devel-server.py"]
|