From 317b8ccd988a6ed2475e71be60e2e3cda4f4a470 Mon Sep 17 00:00:00 2001 From: Parth Agrawal <98726675+pagrawal10@users.noreply.github.com> Date: Fri, 7 Jul 2023 11:09:47 +0530 Subject: [PATCH] Downgrade busybox version to fix k8s IT (#14518) (#143) Co-authored-by: Rishabh Singh <6513075+findingrish@users.noreply.github.com> --- distribution/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribution/docker/Dockerfile b/distribution/docker/Dockerfile index 9e619f704e8c..ab50e99e7ce7 100644 --- a/distribution/docker/Dockerfile +++ b/distribution/docker/Dockerfile @@ -50,7 +50,7 @@ RUN if [ "$TARGETARCH" = "arm64" ]; then \ echo "Downloading bash-static from ${BASH_URL}" \ && wget ${BASH_URL} -O /bin/bash -FROM busybox:1.35.0-glibc as busybox +FROM busybox:1.34.1-glibc as busybox FROM gcr.io/distroless/java$JDK_VERSION-debian12 LABEL maintainer="Apache Druid Developers "