moth/Dockerfile.moth-devel

11 lines
243 B
Docker
Raw Normal View History

2017-09-14 09:07:04 -06:00
FROM alpine
RUN apk --no-cache add python3 py3-pillow && \
pip3 install aiohttp
2017-10-23 10:01:11 -06:00
COPY . /moth/
COPY example-puzzles /puzzles/
2017-09-11 10:12:22 -06:00
WORKDIR /moth/
ENTRYPOINT ["python3", "/moth/devel/devel-server.py", "--bind", ":8080", "--puzzles", "/puzzles"]