From 90ebcf6059207bc0b4238a64744e178ec8a0312c Mon Sep 17 00:00:00 2001 From: Deon George Date: Wed, 11 Mar 2020 13:52:35 +1100 Subject: [PATCH] Updated to buster, added php --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 241397d..d5643a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ # NAME leenooks/sbbs # VERSION 3.17c -FROM debian:stretch-slim +FROM debian:buster-slim # Base utilities RUN apt-get update \ - && apt-get install -yqq curl supervisor procps less zip unzip arj unrar-free lhasa arc zoo logrotate libmozjs185-1.0 cron \ + && apt-get install -yqq curl supervisor procps less zip unzip arj unrar-free lhasa arc logrotate cron php-cgi php-fpm \ && apt-get -y autoremove \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* @@ -17,19 +17,19 @@ RUN ln -sf /usr/share/zoneinfo/Australia/Melbourne /etc/localtime RUN curl -s http://apt.leenooks.net/setup.sh | sh # Add ZeroTier -RUN echo "deb http://download.zerotier.com/debian/stretch stretch 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 RUN apt-get update \ - && apt-get install -yqq --allow-unauthenticated makenl zerotier-one=1.4.0 \ + && apt-get install -yqq makenl zerotier-one \ && apt-get -y autoremove \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # Other Utilities -RUN echo "deb http://ftp.au.debian.org/debian/ stretch contrib" > /etc/apt/sources.list.d/contrib.list +RUN echo "deb http://deb.debian.org/debian stretch main contrib" > /etc/apt/sources.list.d/contrib.list RUN apt-get update \ - && apt-get install -yqq dosemu \ + && apt-get install -yqq dosemu libmozjs185-1.0 \ && apt-get -y autoremove \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*