New PACKAGES logic

This commit is contained in:
Alexandre
2021-12-07 20:32:38 +01:00
parent d0f5c8653b
commit ee196a0279
75 changed files with 981 additions and 363 deletions

View File

@@ -7,16 +7,16 @@ FROM ${BUILD_FROM}
ENV NEXTCLOUD_PATH="/data/config/www/nextcloud"
ARG BUILD_ARCH
ENV BASHIO_VERSION=0.14.3
ENV PACKAGES="curl jq wget gcompat@community"
# Add bashio
RUN \
echo "Install version $BUILD_VERSION on $BUILD_ARCH" \
&& apk add --no-cache ${PACKAGES} \
##################
# Install bashio #
##################
&& echo "**** Install Bashio ****" \
&& apk add --no-cache \
curl jq wget \
&& curl -J -L -o /tmp/bashio.tar.gz \
"https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz" \
&& mkdir /tmp/bashio \
@@ -26,10 +26,7 @@ RUN \
\
&& mv /tmp/bashio/lib /usr/lib/bashio \
&& ln -s /usr/lib/bashio/bashio /usr/bin/bashio \
&& rm -fr /tmp/bashio.tar.gz \
\
#gclib compatibility
&& apk add --no-cache gcompat@community || true
&& rm -fr /tmp/bashio.tar.gz || true
RUN \
# modify/copy files

View File

@@ -6,25 +6,12 @@ if [ ! -f "/usr/bin/bashio" ]; then
################
# Install apps #
################
apk update &&
apk add --no-cache \
jq \
curl \
cifs-utils \
keyutils \
samba-client \
samba ||
(
apt-get clean &&
apt-get update &&
apt-get install -y --no-install-recommends \
jq \
curl \
cifs-utils \
keyutils \
smbclient \
samba
)
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 #
@@ -36,6 +23,7 @@ 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
fi