From 005dfb1435fe8158247a6a73c3dec7f4c8af4a00 Mon Sep 17 00:00:00 2001 From: Lan Tian Date: Thu, 7 Sep 2023 00:51:56 -0700 Subject: [PATCH] frontend: make docker image whois client try to use config file --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 1b5c547..c0af47d 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -15,7 +15,7 @@ RUN wget https://github.com/rfc1036/whois/archive/refs/tags/v5.5.18.tar.gz \ -O whois-5.5.18.tar.gz RUN tar xvf whois-5.5.18.tar.gz \ && cd whois-5.5.18 \ - && make -j4 LDFLAGS="-static" \ + && make -j4 LDFLAGS="-static" CONFIG_FILE="/etc/whois.conf" \ && strip /root/whois-5.5.18/whois ################################################################################