From 199c413f133ad688ba0cfb833641b60e3fb3c0fd Mon Sep 17 00:00:00 2001 From: romeroalx Date: Tue, 14 May 2024 17:26:05 +0200 Subject: [PATCH] Adding liblua5.3-dev/libluajit-5.1-dev to dockerfiles --- Dockerfile-auth | 1 + Dockerfile-dnsdist | 1 + Dockerfile-recursor | 1 + 3 files changed, 3 insertions(+) diff --git a/Dockerfile-auth b/Dockerfile-auth index c600200615..ca2bafaa76 100644 --- a/Dockerfile-auth +++ b/Dockerfile-auth @@ -46,6 +46,7 @@ RUN if [ "${DOCKER_FAKE_RELEASE}" = "YES" ]; then \ # simplify repeated -C calls with SUBDIRS? RUN mkdir /build && \ LUAVER=$([ -z "${NO_LUA_JIT##*$(dpkg --print-architecture)*}" ] && echo 'lua5.3' || echo 'luajit') && \ + apt-get install -y lib${LUAVER}-*dev && \ ./configure \ --with-lua=${LUAVER} \ --sysconfdir=/etc/powerdns \ diff --git a/Dockerfile-dnsdist b/Dockerfile-dnsdist index 2b96ab3ef9..433c473348 100644 --- a/Dockerfile-dnsdist +++ b/Dockerfile-dnsdist @@ -55,6 +55,7 @@ RUN mkdir /quiche && cd /quiche && \ RUN mkdir /build && \ LUAVER=$([ -z "${NO_LUA_JIT##*$(dpkg --print-architecture)*}" ] && echo 'lua5.3' || echo 'luajit') && \ + apt-get install -y lib${LUAVER}-*dev && \ ./configure \ --with-lua=${LUAVER} \ LDFLAGS=-rdynamic \ diff --git a/Dockerfile-recursor b/Dockerfile-recursor index 9b118cd866..4b76fa3478 100644 --- a/Dockerfile-recursor +++ b/Dockerfile-recursor @@ -53,6 +53,7 @@ RUN if [ "${DOCKER_FAKE_RELEASE}" = "YES" ]; then \ RUN mkdir /build && \ LUAVER=$([ -z "${NO_LUA_JIT##*$(dpkg --print-architecture)*}" ] && echo 'lua5.3' || echo 'luajit') && \ + apt-get install -y lib${LUAVER}-*dev && \ ./configure \ --with-lua=${LUAVER} \ LDFLAGS=-rdynamic \ -- 2.47.2