diff --git a/utils/Dockerfile b/utils/Dockerfile index 4a9778f875178776f43ffd2142850556b952bfdc..d94f5879a6aed58b946a5c38aace3ec94ef1e8b2 100644 --- a/utils/Dockerfile +++ b/utils/Dockerfile @@ -4,7 +4,9 @@ ARG ORCHENT_VERSION=1.2.9.rc1 ARG LIBQRENCODE_PATH=/tmp/libqrencode.deb RUN DEBIAN_FRONTEND=noninteractive \ - && apt-get update && apt-get install -y gnupg2 apt-utils software-properties-common wget \ + && apt-get update && apt-get install -y gnupg2 apt-utils software-properties-common wget + +RUN DEBIAN_FRONTEND=noninteractive \ && wget -O ${LIBQRENCODE_PATH} wget http://archive.ubuntu.com/ubuntu/pool/universe/q/qrencode/libqrencode3_3.4.4-1build1_amd64.deb \ && dpkg -i ${LIBQRENCODE_PATH} && rm -f ${LIBQRENCODE_PATH} \ && apt-key adv --keyserver hkp://pgp.surfnet.nl --recv-keys ACDFB08FDC962044D87FF00B512839863D487A87 \