Upgrade add-on base image to 9.1.0

This commit is contained in:
Franck Nijhof 2021-01-24 19:52:30 +01:00
parent 0bd9da61c9
commit 70c7d4e502
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3
2 changed files with 15 additions and 15 deletions

View file

@ -1,4 +1,4 @@
ARG BUILD_FROM=hassioaddons/base:8.0.5 ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:9.1.0
# hadolint ignore=DL3006 # hadolint ignore=DL3006
FROM ${BUILD_FROM} FROM ${BUILD_FROM}
@ -12,18 +12,18 @@ COPY requirements.txt /tmp/
ARG BUILD_ARCH=amd64 ARG BUILD_ARCH=amd64
RUN \ RUN \
apk add --no-cache --virtual .build-dependencies \ apk add --no-cache --virtual .build-dependencies \
automake=1.16.2-r0 \ automake=1.16.3-r0 \
gcc=9.3.0-r2 \ gcc=10.2.1_pre1-r3 \
linux-headers=5.4.5-r1 \ linux-headers=5.7.8-r0 \
musl-dev=1.1.24-r9 \ musl-dev=1.2.2-r0 \
python3-dev=3.8.5-r0 \ python3-dev=3.8.7-r0 \
\ \
&& apk add --no-cache \ && apk add --no-cache \
lua-resty-http=0.15-r0 \ lua-resty-http=0.15-r0 \
nginx-mod-http-lua=1.18.0-r1 \ nginx-mod-http-lua=1.18.0-r13 \
nginx=1.18.0-r1 \ nginx=1.18.0-r13 \
py3-pip=20.1.1-r0 \ py3-pip=20.3.3-r0 \
python3=3.8.5-r0 \ python3=3.8.7-r0 \
\ \
&& pip3 install \ && pip3 install \
--no-cache-dir \ --no-cache-dir \

View file

@ -1,9 +1,9 @@
{ {
"build_from": { "build_from": {
"aarch64": "hassioaddons/base-aarch64:8.0.5", "aarch64": "ghcr.io/hassio-addons/base/aarch64:9.1.0",
"amd64": "hassioaddons/base-amd64:8.0.5", "amd64": "ghcr.io/hassio-addons/base/amd64:9.1.0",
"armhf": "hassioaddons/base-armhf:8.0.5", "armhf": "ghcr.io/hassio-addons/base/armhf:9.1.0",
"armv7": "hassioaddons/base-armv7:8.0.5", "armv7": "ghcr.io/hassio-addons/base/armv7:9.1.0",
"i386": "hassioaddons/base-i386:8.0.5" "i386": "ghcr.io/hassio-addons/base/i386:9.1.0"
} }
} }