This is an automated email from the ASF dual-hosted git repository.

lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new e236f49f4a8 [fix][misc] Add proper nslookup (included in bind-tools) 
to docker image (#22878)
e236f49f4a8 is described below

commit e236f49f4a8f3645eba3b755c6114b63585fa02e
Author: Lari Hotari <lhot...@users.noreply.github.com>
AuthorDate: Fri Jun 7 23:07:01 2024 +0300

    [fix][misc] Add proper nslookup (included in bind-tools) to docker image 
(#22878)
---
 docker/pulsar/Dockerfile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/docker/pulsar/Dockerfile b/docker/pulsar/Dockerfile
index f3fea0e1e9d..b75519fa91a 100644
--- a/docker/pulsar/Dockerfile
+++ b/docker/pulsar/Dockerfile
@@ -81,7 +81,7 @@ FROM apachepulsar/glibc-base:2.38 as glibc
 FROM alpine:3.19.1
 ENV LANG C.UTF-8
 
-# Install some utilities
+# Install some utilities, some are required by Pulsar scripts
 RUN apk add --no-cache \
             bash \
             python3 \
@@ -91,7 +91,8 @@ RUN apk add --no-cache \
             gcompat \
             ca-certificates \
             procps \
-            curl
+            curl \
+            bind-tools
 
 # Upgrade all packages to get latest versions with security fixes
 RUN apk upgrade --no-cache

Reply via email to