mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-20 03:28:11 +01:00
New PACKAGES logic
This commit is contained in:
@@ -3,7 +3,6 @@ ARG BUILD_UPSTREAM="2.19.0"
|
||||
FROM hurlenko/filebrowser:v${BUILD_UPSTREAM}
|
||||
ENV BASHIO_VERSION=0.14.3
|
||||
|
||||
|
||||
ENV PACKAGES="curl \
|
||||
jq \
|
||||
bash \
|
||||
@@ -18,7 +17,7 @@ RUN \
|
||||
################
|
||||
# Install apps #
|
||||
################
|
||||
apk add --no-cache $PACKAGES \
|
||||
apk add --no-cache ${PACKAGES} \
|
||||
\
|
||||
##################
|
||||
# Install bashio #
|
||||
|
||||
@@ -6,7 +6,12 @@ if [ ! -f "/usr/bin/bashio" ]; then
|
||||
################
|
||||
# Install apps #
|
||||
################
|
||||
apk add --no-cache $PACKAGES
|
||||
PACKAGES="${PACKAGES:="curl"}"
|
||||
|
||||
apt-get clean \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y --no-install-recommends ${PACKAGES} 2>/dev/null \
|
||||
|| apk add --no-cache ${PACKAGES}
|
||||
|
||||
###################
|
||||
# Install bashio #
|
||||
|
||||
Reference in New Issue
Block a user