deCONZ 2.5.87 (stable) (#1676)

* deCONZ 2.5.87 (stable)

* Apply suggestions from code review

Co-authored-by: Franck Nijhof <git@frenck.dev>

* add output

* Update build.json

Co-authored-by: Franck Nijhof <git@frenck.dev>
This commit is contained in:
Pascal Vizeli
2020-11-13 18:21:59 +01:00
committed by GitHub
parent 7aec38b3f0
commit 11dbfb55b5
4 changed files with 12 additions and 4 deletions

View File

@@ -6,7 +6,9 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install deCONZ dependencies
ARG BUILD_ARCH
RUN apt-get update \
RUN \
set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
curl \
iproute2 \
@@ -59,7 +61,9 @@ RUN apt-get update \
# Install deCONZ
ARG DECONZ_VERSION
RUN if [ "${BUILD_ARCH}" = "armhf" ]; \
RUN \
set -x \
&& if [ "${BUILD_ARCH}" = "armhf" ]; \
then \
curl -q -L -o /deconz.deb http://deconz.dresden-elektronik.de/raspbian/stable/deconz-${DECONZ_VERSION}-qt5.deb; \
elif [ "${BUILD_ARCH}" = "aarch64" ]; \