1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-08 04:51:06 -07:00
moth/Dockerfile.moth-devel
John Donaldson f798dcc78e Adding dependencies to build some python modules
Pinning Alpine version
2018-09-11 16:54:48 -05:00

16 lines
308 B
Text

FROM alpine:3.7
RUN apk --no-cache add \
gcc \
musl-dev \
python3 \
python3-dev \
py3-pillow \
&& \
pip3 install aiohttp
COPY . /moth/
COPY example-puzzles /puzzles/
WORKDIR /moth/
ENTRYPOINT ["python3", "/moth/tools/devel-server.py", "--bind", ":8080", "--puzzles", "/puzzles"]