mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-06 20:10:36 -07:00
10 lines
243 B
Text
10 lines
243 B
Text
FROM alpine
|
|
|
|
RUN apk --no-cache add python3 py3-pillow && \
|
|
pip3 install aiohttp
|
|
|
|
COPY . /moth/
|
|
COPY example-puzzles /puzzles/
|
|
|
|
WORKDIR /moth/
|
|
ENTRYPOINT ["python3", "/moth/tools/devel-server.py", "--bind", ":8080", "--puzzles", "/puzzles"]
|