From f5294798f17f4a77426cb5baa3741978b3f762fb Mon Sep 17 00:00:00 2001 From: Deon George Date: Fri, 14 Sep 2018 21:09:33 +1000 Subject: [PATCH] Updated BLAM, added Timezone --- Dockerfile | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c284a08..381eb71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,15 +22,17 @@ RUN SOURCE_URL=https://chinwag.leenooks.net/mods && FILE=DBLUP10.ZIP && \ mv /tmp/doubleup.mps scripts/ && cd scripts && ./mplc doubleup.mps && \ rm -rf /tmp/* -# Utility BLAM - BBS List Admin Manager v2.1 -RUN SOURCE_URL=https://chinwag.leenooks.net/mods && FILE=GYBLAM21.ZIP && \ +# Utility BLAM - BBS List Admin Manager v2.1 with Node2BBI +RUN SOURCE_URL=https://chinwag.leenooks.net/mods && FILE=node2bbi.zip && \ cd /tmp && \ curl -O ${SOURCE_URL}/${FILE} && \ unzip ${FILE} && \ cd /mystic/ && \ chmod 644 /tmp/*.txt /tmp/*.ini /tmp/*.mps && mv /tmp/sysop.txt docs/mod-blam-2.1-sysop.txt && \ + mv /tmp/fsxnetnode2bbi.txt docs/mod-blam-2.1-fsxnetnode2bbi.txt && \ mv /tmp/gy-blam.ini docs/mod-blam-2.1-gy-blam.ini && \ mv /tmp/gy-blam.mps scripts/ && cd scripts && ./mplc gy-blam.mps && \ + mv /tmp/node2bbi.mps . && ./mplc node2bbi.mps && \ rm -rf /tmp/* # Utility QRCODE - QR Code for Mystic BBS v1.0 @@ -94,11 +96,24 @@ RUN SOURCE_URL=https://chinwag.leenooks.net/mods && FILE=gy-rvrs10.zip && \ curl -O ${SOURCE_URL}/${FILE} && \ unzip ${FILE} && \ cd /mystic/ && \ - chmod 644 /tmp/*.txt /tmp/*.mps /tmp/*.ans && mv /tmp/sysop.txt docs/mod-rvrs-1.0-sysop.txt && \ + chmod 644 /tmp/*.txt /tmp/*.mps /tmp/*.ans && mv /tmp/sysop.txt docs/mod-reversi-1.0-sysop.txt && \ mv /tmp/reversi.mps scripts/ && cd scripts && ./mplc reversi.mps && cd .. && \ gunzip data.tar.gz && mkdir -p /tmp/data/text && mv /tmp/r*.ans /tmp/data/text/ && tar -C /tmp -rf /mystic/data.tar data/text/ && gzip data.tar && \ rm -rf /tmp/* +# Utility TIMEZONE - Timezone +RUN SOURCE_URL=https://chinwag.leenooks.net/mods && FILE=xq-timezone.zip && \ + cd /tmp && \ + curl -O ${SOURCE_URL}/${FILE} && \ + unzip ${FILE} && \ + cd /mystic/ && \ + chmod 644 /tmp/*.txt /tmp/*.mps /tmp/xq-tz/* && mv /tmp/sysop.txt docs/mod-tz-1.0-sysop.txt && \ + mv /tmp/xq-tz.mps scripts/ && cd scripts && ./mplc xq-tz && cd .. && \ + mv /tmp/xq-tz scripts/ && \ + apt-get update && \ + apt-get install --no-install-recommends -yqq python-dateutil python-tz && \ + rm -rf /var/lib/apt/lists/* /tmp/* + # Game Galactic Dynasty 0.9.1-dev RUN apt-get update \ && apt-get install --no-install-recommends --allow-unauthenticated -yqq galacticdynasty \