mirror of https://github.com/dirtbags/moth.git
15 lines
343 B
Docker
15 lines
343 B
Docker
FROM neale/eris
|
|
|
|
# Install MOTH. This could be less obtuse.
|
|
COPY www /moth/www/
|
|
COPY bin /moth/bin/
|
|
COPY src/moth-init /moth/init
|
|
RUN ln -s ../state/puzzles.json /moth/www/puzzles.json && \
|
|
ln -s ../state/points.json /moth/www/points.json && \
|
|
apk --no-cache add lua5.2 lua5.3 && \
|
|
ln -s lua5.2 /usr/bin/lua
|
|
|
|
|
|
CMD ["/moth/init"]
|
|
|