🔨 Changes add-on base to Ubuntu

This commit is contained in:
Franck Nijhof 2018-05-13 11:52:02 +02:00
parent df11514768
commit e83177d61c
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3
2 changed files with 7 additions and 9 deletions

View file

@ -1,15 +1,13 @@
ARG BUILD_FROM=hassioaddons/debian-base-amd64:1.0.0 ARG BUILD_FROM=hassioaddons/ubuntu-base-amd64:1.1.0
# hadolint ignore=DL3006 # hadolint ignore=DL3006
FROM ${BUILD_FROM} FROM ${BUILD_FROM}
# Setup base system # Setup base system
RUN \ RUN \
echo 'deb http://deb.debian.org/debian jessie main' >> /etc/apt/sources.list \ apt-get update \
\
&& apt-get update \
\ \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \
libssl1.0.0=1.0.1t-1+deb8u8 \ libssl1.0.0=1.0.2g-1ubuntu4.12 \
\ \
&& rm -f -r /tmp/* \ && rm -f -r /tmp/* \
&& rm -rf /var/lib/apt/lists/* \ && rm -rf /var/lib/apt/lists/* \

View file

@ -1,9 +1,9 @@
{ {
"build_from": { "build_from": {
"aarch64": "hassioaddons/debian-base-aarch64:1.0.0", "aarch64": "hassioaddons/debian-base-aarch64:1.1.0",
"amd64": "hassioaddons/debian-base-amd64:1.0.0", "amd64": "hassioaddons/debian-base-amd64:1.1.0",
"armhf": "hassioaddons/debian-base-armhf:1.0.0", "armhf": "hassioaddons/debian-base-armhf:1.1.0",
"i386": "hassioaddons/debian-base-i386:1.0.0" "i386": "hassioaddons/debian-base-i386:1.1.0"
}, },
"args": {} "args": {}
} }