moth/Dockerfile.moth-devel

11 lines
243 B
Docker

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"]