This commit is contained in:
Alexandre
2021-12-08 10:52:10 +01:00
parent 98e3858d76
commit 2616251ad4
3 changed files with 6 additions and 10 deletions

View File

@@ -5,7 +5,7 @@ FROM m4dm4rtig4n/enedisgateway2mqtt:$BUILD_UPSTREAM
ENV BASHIO_VERSION=0.14.3
ENV PACKAGES="jq \
curl \
yamllin"
yamllint"
# Copy root filesystem
COPY rootfs /

View File

@@ -1,4 +0,0 @@
#!/usr/bin/with-contenv bashio
mkdir -p /addons
mount /dev/mmcblk0p8 /addons &>/dev/null && bashio::log.info "Data drive mounted in /addons"

View File

@@ -7,16 +7,16 @@ ARG BUILD_ARCH
ENV LANG='C.UTF-8'\
TERM='xterm-256color'\
GOPATH='/opt/go'
ENV PACKAGES="curl \
jq \
bash \
xz build-base libressl-dev ca-certificates npm"
RUN \
################
# Install apps #
################
apk add --no-cache \
curl \
jq \
bash \
xz build-base libressl-dev ca-certificates npm \
apk add --no-cache ${PACKAGES} \
\
##################
# Install bashio #