You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
FROM alpine:latest
|
|
|
|
|
|
|
|
|
|
ARG GAME_URL
|
|
|
|
|
ARG GAME_ARGS
|
|
|
|
|
|
|
|
|
|
WORKDIR site
|
|
|
|
|
RUN wget https://js-dos.com/6.22/current/js-dos.js && \
|
|
|
|
|
wget https://js-dos.com/6.22/current/wdosbox.js && \
|
|
|
|
|
wget https://js-dos.com/6.22/current/wdosbox.wasm.js && \
|
|
|
|
|
wget -O game.zip "$GAME_URL"
|
|
|
|
|
|
|
|
|
|
RUN apk add darkhttpd
|
|
|
|
|
|
|
|
|
|
COPY index.html ./
|
|
|
|
|
RUN sed -i s/GAME_ARGS/$GAME_ARGS/ index.html
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/darkhttpd", "/site", "--port", "8000"]
|