Skip to content

Commit 8bf0e5c

Browse files
authored
⬆️ Update base image and dependencies (#163)
* ⬆️ 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
1 parent 5c75c6d commit 8bf0e5c

File tree

2 files changed

+25
-25
lines changed

2 files changed

+25
-25
lines changed

bookstack/Dockerfile

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:10.1.1
1+
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:10.2.3
22
# hadolint ignore=DL3006
33
FROM ${BUILD_FROM}
44

@@ -9,32 +9,32 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
99
# hadolint ignore=DL3003
1010
RUN \
1111
apk add --no-cache \
12-
mariadb-client=10.5.12-r0 \
13-
nginx=1.20.1-r3 \
14-
php7-curl=7.4.25-r0 \
15-
php7-dom=7.4.25-r0 \
16-
php7-fileinfo=7.4.25-r0 \
17-
php7-fpm=7.4.25-r0 \
18-
php7-gd=7.4.25-r0 \
19-
php7-json=7.4.25-r0 \
20-
php7-ldap=7.4.25-r0 \
21-
php7-mbstring=7.4.25-r0 \
22-
php7-mysqlnd=7.4.25-r0 \
23-
php7-openssl=7.4.25-r0 \
24-
php7-pdo_mysql=7.4.25-r0 \
25-
php7-session=7.4.25-r0 \
26-
php7-simplexml=7.4.25-r0 \
27-
php7-tokenizer=7.4.25-r0 \
28-
php7-xml=7.4.25-r0 \
29-
php7=7.4.25-r0 \
12+
mariadb-client=10.5.13-r0 \
13+
nginx=1.20.2-r0 \
14+
php7-curl=7.4.26-r0 \
15+
php7-dom=7.4.26-r0 \
16+
php7-fileinfo=7.4.26-r0 \
17+
php7-fpm=7.4.26-r0 \
18+
php7-gd=7.4.26-r0 \
19+
php7-json=7.4.26-r0 \
20+
php7-ldap=7.4.26-r0 \
21+
php7-mbstring=7.4.26-r0 \
22+
php7-mysqlnd=7.4.26-r0 \
23+
php7-openssl=7.4.26-r0 \
24+
php7-pdo_mysql=7.4.26-r0 \
25+
php7-session=7.4.26-r0 \
26+
php7-simplexml=7.4.26-r0 \
27+
php7-tokenizer=7.4.26-r0 \
28+
php7-xml=7.4.26-r0 \
29+
php7=7.4.26-r0 \
3030
\
3131
&& apk add --no-cache --virtual .build-dependencies \
3232
composer=2.1.9-r0 \
3333
\
3434
&& curl -J -L -o /tmp/bookstack.tar.gz \
3535
https://github.com/BookStackApp/BookStack/archive/v21.10.3.tar.gz \
3636
&& mkdir -p /var/www/bookstack \
37-
&& tar zxvf /tmp/bookstack.tar.gz -C \
37+
&& tar zxf /tmp/bookstack.tar.gz -C \
3838
/var/www/bookstack --strip-components=1 \
3939
&& cd /var/www/bookstack \
4040
\

bookstack/build.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"build_from": {
3-
"aarch64": "ghcr.io/hassio-addons/base/aarch64:10.1.1",
4-
"amd64": "ghcr.io/hassio-addons/base/amd64:10.1.1",
5-
"armhf": "ghcr.io/hassio-addons/base/armhf:10.1.1",
6-
"armv7": "ghcr.io/hassio-addons/base/armv7:10.1.1",
7-
"i386": "ghcr.io/hassio-addons/base/i386:10.1.1"
3+
"aarch64": "ghcr.io/hassio-addons/base/aarch64:10.2.3",
4+
"amd64": "ghcr.io/hassio-addons/base/amd64:10.2.3",
5+
"armhf": "ghcr.io/hassio-addons/base/armhf:10.2.3",
6+
"armv7": "ghcr.io/hassio-addons/base/armv7:10.2.3",
7+
"i386": "ghcr.io/hassio-addons/base/i386:10.2.3"
88
}
99
}

0 commit comments

Comments
 (0)