From 349a2dad8aa9066adb6c687d12bf7ebe5d555067 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 a62c7a720e..d303c2be1e 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 cf94ac420d..40c2847118 100644 --- a/Dockerfile-recursor +++ b/Dockerfile-recursor @@ -54,6 +54,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