mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-05 11:30:41 -07:00
17 lines
354 B
Text
17 lines
354 B
Text
FROM alpine:3.8
|
|
|
|
RUN apk --no-cache add \
|
|
gcc \
|
|
musl-dev \
|
|
python3 \
|
|
python3-dev \
|
|
py3-pillow \
|
|
&& pip3 install aiohttp
|
|
|
|
COPY devel /app/
|
|
COPY example-puzzles /puzzles/
|
|
COPY theme /theme/
|
|
|
|
WORKDIR /moth/
|
|
ENTRYPOINT [ "python3", "/app/devel-server.py" ]
|
|
CMD [ "--bind", "0.0.0.0:8080", "--puzzles", "/puzzles", "--theme", "/theme" ]
|