From 8bf0e5ce792bb59503498a6fa9e9368fc9f4c569 Mon Sep 17 00:00:00 2001 From: Paul Sinclair <24625998+sinclairpaul@users.noreply.github.com> Date: Mon, 29 Nov 2021 18:14:31 -0500 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Update=20base=20image=20an?= =?UTF-8?q?d=20dependencies=20(#163)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ⬆️ Update base image to v10.2.3 * ⬆️ Update php to v7.4.26-r0 * ⬆️ Update ngnix to v1.20.2-r0 * ⬆️ Update mariadb-client to v10.5.13-r0 * 🔨 Remove verbose logging --- bookstack/Dockerfile | 40 ++++++++++++++++++++-------------------- bookstack/build.json | 10 +++++----- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/bookstack/Dockerfile b/bookstack/Dockerfile index 231b32a..db13287 100644 --- a/bookstack/Dockerfile +++ b/bookstack/Dockerfile @@ -1,4 +1,4 @@ -ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:10.1.1 +ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:10.2.3 # hadolint ignore=DL3006 FROM ${BUILD_FROM} @@ -9,24 +9,24 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] # hadolint ignore=DL3003 RUN \ apk add --no-cache \ - mariadb-client=10.5.12-r0 \ - nginx=1.20.1-r3 \ - php7-curl=7.4.25-r0 \ - php7-dom=7.4.25-r0 \ - php7-fileinfo=7.4.25-r0 \ - php7-fpm=7.4.25-r0 \ - php7-gd=7.4.25-r0 \ - php7-json=7.4.25-r0 \ - php7-ldap=7.4.25-r0 \ - php7-mbstring=7.4.25-r0 \ - php7-mysqlnd=7.4.25-r0 \ - php7-openssl=7.4.25-r0 \ - php7-pdo_mysql=7.4.25-r0 \ - php7-session=7.4.25-r0 \ - php7-simplexml=7.4.25-r0 \ - php7-tokenizer=7.4.25-r0 \ - php7-xml=7.4.25-r0 \ - php7=7.4.25-r0 \ + mariadb-client=10.5.13-r0 \ + nginx=1.20.2-r0 \ + php7-curl=7.4.26-r0 \ + php7-dom=7.4.26-r0 \ + php7-fileinfo=7.4.26-r0 \ + php7-fpm=7.4.26-r0 \ + php7-gd=7.4.26-r0 \ + php7-json=7.4.26-r0 \ + php7-ldap=7.4.26-r0 \ + php7-mbstring=7.4.26-r0 \ + php7-mysqlnd=7.4.26-r0 \ + php7-openssl=7.4.26-r0 \ + php7-pdo_mysql=7.4.26-r0 \ + php7-session=7.4.26-r0 \ + php7-simplexml=7.4.26-r0 \ + php7-tokenizer=7.4.26-r0 \ + php7-xml=7.4.26-r0 \ + php7=7.4.26-r0 \ \ && apk add --no-cache --virtual .build-dependencies \ composer=2.1.9-r0 \ @@ -34,7 +34,7 @@ RUN \ && curl -J -L -o /tmp/bookstack.tar.gz \ https://github.com/BookStackApp/BookStack/archive/v21.10.3.tar.gz \ && mkdir -p /var/www/bookstack \ - && tar zxvf /tmp/bookstack.tar.gz -C \ + && tar zxf /tmp/bookstack.tar.gz -C \ /var/www/bookstack --strip-components=1 \ && cd /var/www/bookstack \ \ diff --git a/bookstack/build.json b/bookstack/build.json index a95c1a6..0052b15 100644 --- a/bookstack/build.json +++ b/bookstack/build.json @@ -1,9 +1,9 @@ { "build_from": { - "aarch64": "ghcr.io/hassio-addons/base/aarch64:10.1.1", - "amd64": "ghcr.io/hassio-addons/base/amd64:10.1.1", - "armhf": "ghcr.io/hassio-addons/base/armhf:10.1.1", - "armv7": "ghcr.io/hassio-addons/base/armv7:10.1.1", - "i386": "ghcr.io/hassio-addons/base/i386:10.1.1" + "aarch64": "ghcr.io/hassio-addons/base/aarch64:10.2.3", + "amd64": "ghcr.io/hassio-addons/base/amd64:10.2.3", + "armhf": "ghcr.io/hassio-addons/base/armhf:10.2.3", + "armv7": "ghcr.io/hassio-addons/base/armv7:10.2.3", + "i386": "ghcr.io/hassio-addons/base/i386:10.2.3" } }