Update 00-aaa_dockerfile_backup.sh

This commit is contained in:
Alexandre
2021-11-25 18:34:19 +01:00
committed by GitHub
parent afec08b735
commit efb303f376

View File

@@ -8,8 +8,8 @@ if [ ! -f "/usr/bin/bashio" ]; then
################
# Install apps #
################
apt-get clean &&
apt-get update &&
apt-get clean
apt-get update
apt-get install -yq --no-install-recommends \
jq \
curl \
@@ -25,6 +25,6 @@ if [ ! -f "/usr/bin/bashio" ]; then
mv /tmp/bashio/lib /usr/lib/bashio
ln -s /usr/lib/bashio/bashio /usr/bin/bashio
rm -rf /tmp/bashio
) >/dev/null
) &>/dev/null
echo "Bashio installed"
fi