1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-08 21:11:06 -07:00
moth/Dockerfile.moth-devel

13 lines
289 B
Text
Raw Normal View History

2017-09-11 10:12:22 -06:00
FROM python:3-alpine
COPY tools/devel-server.py /moth/
COPY tools/moth.py /moth/
COPY tools/mistune.py /moth/
COPY tools/answer_words.txt /moth/
COPY www /moth/src/www
COPY example-puzzles /moth/puzzles
COPY docs /moth/docs
WORKDIR /moth/
ENTRYPOINT ["python3", "/moth/devel-server.py"]