From fe62cf6c4ddcccea2960efec24818c42f48c2658 Mon Sep 17 00:00:00 2001 From: naison <895703375@qq.com> Date: Mon, 7 Apr 2025 13:00:13 +0800 Subject: [PATCH] hotfix: install missing command dig (#521) --- build/Dockerfile | 2 +- build/test.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index 7e27a96d..dbd185d5 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -11,7 +11,7 @@ RUN make kubevpn FROM debian:bookworm-slim ARG BASE=github.com/wencaiwulue/kubevpn -RUN apt-get update && apt-get install -y openssl iptables curl \ +RUN apt-get update && apt-get install -y openssl iptables curl dnsutils \ && if [ $(uname -m) = "x86_64" ]; then \ echo "The architecture is AMD64"; \ curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"; \ diff --git a/build/test.Dockerfile b/build/test.Dockerfile index 7e27a96d..dbd185d5 100644 --- a/build/test.Dockerfile +++ b/build/test.Dockerfile @@ -11,7 +11,7 @@ RUN make kubevpn FROM debian:bookworm-slim ARG BASE=github.com/wencaiwulue/kubevpn -RUN apt-get update && apt-get install -y openssl iptables curl \ +RUN apt-get update && apt-get install -y openssl iptables curl dnsutils \ && if [ $(uname -m) = "x86_64" ]; then \ echo "The architecture is AMD64"; \ curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"; \