mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-06 20:10:36 -07:00
14 lines
323 B
Text
14 lines
323 B
Text
FROM alpine
|
|
|
|
RUN apk --no-cache add python3 py3-pillow
|
|
|
|
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"]
|