From a4973c783f82d6ed5e3761b25931e5176c1e4432 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 18 Oct 2021 18:43:59 +0200 Subject: [PATCH] Update Dockerfile --- webtrees/Dockerfile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/webtrees/Dockerfile b/webtrees/Dockerfile index 97b90f940..50c9c1091 100644 --- a/webtrees/Dockerfile +++ b/webtrees/Dockerfile @@ -5,6 +5,34 @@ VOLUME [ "/data" ] USER root +# Base system +ARG BASHIO_VERSION=0.13.1 +ARG TEMPIO_VERSION=2021.01.0 +ARG BUILD_ARCH + +RUN \ + ################ + # Install apps # + ################ + apt-get clean \ + && apt-get update \ + && apt-get install -y \ + jq \ + curl \ + cifs-utils \ + keyutils \ + && apt-get clean \ + \ + ################## + # Install bashio # + ################## + && mkdir -p /tmp/bashio \ + && curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz" \ + | tar -xzf - --strip 1 -C /tmp/bashio \ + && mv /tmp/bashio/lib /usr/lib/bashio \ + && ln -s /usr/lib/bashio/bashio /usr/bin/bashio \ + && rm -rf /tmp/bashio + #RUN cp -n rootfs /data \ # && touch /data/database.sqlite \ # && ln -s /data/config.ini.php /var/www/webtrees/data \