moth/Dockerfile.moth-devel

17 lines
308 B
Docker
Raw Normal View History

FROM alpine:3.7
2017-09-14 09:07:04 -06:00
RUN apk --no-cache add \
gcc \
musl-dev \
python3 \
python3-dev \
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"]