From: James-Crowley Date: Fri, 5 Feb 2021 21:08:49 +0000 (-0500) Subject: Need to call bash instead of sh for bash magic X-Git-Tag: dnsdist-1.6.0-alpha2~25^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d616a283ffe37a8153b840c7d84a4ab025d0e6a;p=thirdparty%2Fpdns.git Need to call bash instead of sh for bash magic --- diff --git a/Dockerfile-auth b/Dockerfile-auth index 0b739e1563..403a83ffe6 100644 --- a/Dockerfile-auth +++ b/Dockerfile-auth @@ -45,7 +45,7 @@ RUN if [ "${DOCKER_FAKE_RELEASE}" = "YES" ]; then \ # simplify repeated -C calls with SUBDIRS? RUN mkdir /build && \ - ./configure \ + /bin/bash -c ./configure \ --with-lua=$([[ "${NO_LUA_JIT}" == *"$(uname -m)"* ]] && echo "lua5.3" || echo "luajit") \ --sysconfdir=/etc/powerdns \ --enable-option-checking=fatal \