diff --git a/Dockerfile b/Dockerfile index 0ed1958..7e7b2a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,7 @@ ARG LIBMODBUS_VERSION ENV DEBIAN_FRONTEND=noninteractive # Install additional build dependencies +# hadolint ignore=DL3008 RUN apt-get update && apt-get install -y -f --no-install-recommends \ autoconf \ automake \ @@ -25,7 +26,7 @@ RUN curl -L https://github.com/stephane/libmodbus/archive/refs/tags/v$LIBMODBUS_ SHELL ["/bin/bash", "-o", "pipefail", "-c"] RUN . /opt/axis/acapsdk/environment-setup* && \ ./autogen.sh && \ - ./configure --host=$ARCH --prefix=/usr --enable-static=yes --enable-shared=no && \ + ./configure --host="$ARCH" --prefix=/usr --enable-static=yes --enable-shared=no && \ make -j $(nproc) install prefix=$SDKTARGETSYSROOT/usr # Build ACAP package