Remove makenl, update to 3.18a

This commit is contained in:
Deon George 2020-05-13 22:29:53 +10:00
parent 90ebcf6059
commit 1e75b5fe05
2 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@ stages:
- build - build
variables: variables:
VERSION: 3.17c-${ARCH} VERSION: 3.18a-${ARCH}
CACHETAG: build-${ARCH} CACHETAG: build-${ARCH}
DOCKER_HOST: tcp://docker:2375 DOCKER_HOST: tcp://docker:2375

View File

@ -1,5 +1,5 @@
# NAME leenooks/sbbs # NAME leenooks/sbbs
# VERSION 3.17c # VERSION 3.18a
FROM debian:buster-slim FROM debian:buster-slim
@ -14,14 +14,14 @@ RUN apt-get update \
RUN ln -sf /usr/share/zoneinfo/Australia/Melbourne /etc/localtime RUN ln -sf /usr/share/zoneinfo/Australia/Melbourne /etc/localtime
# Add in Leenooks' apt repository # Add in Leenooks' apt repository
RUN curl -s http://apt.leenooks.net/setup.sh | sh RUN curl -s http://apt.leenooks.net/buster/setup.sh | sh
# Add ZeroTier # Add ZeroTier
RUN echo "deb [trusted=yes] http://download.zerotier.com/debian/buster buster main" > /etc/apt/sources.list.d/zerotier.list RUN echo "deb [trusted=yes] http://download.zerotier.com/debian/buster buster main" > /etc/apt/sources.list.d/zerotier.list
# Leenooks Utils # Leenooks Utils
RUN apt-get update \ RUN apt-get update \
&& apt-get install -yqq makenl zerotier-one \ && apt-get install -yqq zerotier-one \
&& apt-get -y autoremove \ && apt-get -y autoremove \
&& apt-get clean \ && apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
@ -36,7 +36,7 @@ RUN apt-get update \
# Build SBBS # Build SBBS
RUN apt-get update \ RUN apt-get update \
&& apt-get install -yqq build-essential libnspr4-dev libncurses5-dev libmozjs185-dev cvs wget pkgconf \ && apt-get install -yqq build-essential libnspr4-dev libncurses5-dev libmozjs185-dev cvs wget pkgconf sudo \
&& mkdir /opt/sbbs && cd /tmp \ && mkdir /opt/sbbs && cd /tmp \
&& wget http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/install/GNUmakefile \ && wget http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/install/GNUmakefile \
&& make RELEASE=1 USE_DOSEMU=1 NO_X=1 JSINCLUDE=/usr/include/js JSLIB=mozjs185 SBBSDIR=/opt/sbbs install \ && make RELEASE=1 USE_DOSEMU=1 NO_X=1 JSINCLUDE=/usr/include/js JSLIB=mozjs185 SBBSDIR=/opt/sbbs install \
@ -50,7 +50,7 @@ RUN apt-get update \
&& ln -sf nodes/node4 /opt/sbbs/ \ && ln -sf nodes/node4 /opt/sbbs/ \
&& ln -sf nodes/node5 /opt/sbbs/ \ && ln -sf nodes/node5 /opt/sbbs/ \
&& find /opt/sbbs -name CVS -type d -exec rm -rf {} + \ && find /opt/sbbs -name CVS -type d -exec rm -rf {} + \
&& apt-get -y purge build-essential libnspr4-dev libncurses5-dev libmozjs185-dev cvs wget pkgconf \ && SUDO_FORCE_REMOVE=yes apt-get -y purge build-essential libnspr4-dev libncurses5-dev libmozjs185-dev cvs wget pkgconf \
&& apt-get -y autoremove \ && apt-get -y autoremove \
&& apt-get clean \ && apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*