⬆️ Upgrades add-on base image to v10.0.0 (#150)

This commit is contained in:
Franck Nijhof 2021-07-02 12:00:15 +02:00 committed by GitHub
parent 7e60f04bb2
commit 439e56191d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 15 deletions

View file

@ -1,4 +1,4 @@
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:9.2.2 ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:10.0.0
# hadolint ignore=DL3006 # hadolint ignore=DL3006
FROM ${BUILD_FROM} FROM ${BUILD_FROM}
@ -18,19 +18,19 @@ 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 \
g++=10.2.1_pre1-r3 \ g++=10.3.1_git20210424-r2 \
gcc=10.2.1_pre1-r3 \ gcc=10.3.1_git20210424-r2 \
libffi-dev=3.3-r2 \ libffi-dev=3.3-r2 \
libressl-dev=3.1.5-r0 \ openssl-dev=1.1.1k-r0 \
make=4.3-r0 \ make=4.3-r0 \
python3-dev=3.8.10-r0 \ python3-dev=3.9.5-r1 \
\ \
&& apk add --no-cache \ && apk add --no-cache \
git=2.30.2-r0 \ git=2.32.0-r0 \
libressl=3.1.5-r0 \ openssl=1.1.1k-r0 \
patch=2.7.6-r6 \ patch=2.7.6-r7 \
py3-pip=20.3.4-r0 \ py3-pip=20.3.4-r1 \
python3=3.8.10-r0 \ python3=3.9.5-r1 \
wget=1.21.1-r1 \ wget=1.21.1-r1 \
\ \
&& pip install \ && pip install \

View file

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