From ebe4a7377e6dbf7dd9f225453d705bbba1eb4e74 Mon Sep 17 00:00:00 2001 From: Shubham Chaudhary Date: Fri, 17 May 2024 15:04:27 +0530 Subject: [PATCH] fix(nsutil): fix the nsutil shared lib path Signed-off-by: Shubham Chaudhary --- custom/hardened-alpine/experiment/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/hardened-alpine/experiment/Dockerfile b/custom/hardened-alpine/experiment/Dockerfile index 4d34ab12..86deff2e 100644 --- a/custom/hardened-alpine/experiment/Dockerfile +++ b/custom/hardened-alpine/experiment/Dockerfile @@ -61,7 +61,7 @@ RUN curl -L https://github.com/chaosnative/promql-cli/releases/download/3.0.0-be RUN curl -L https://github.com/litmuschaos/test-tools/releases/download/${LITMUS_VERSION}/nsutil-linux-${TARGETARCH} --output /usr/local/bin/nsutil && chmod +x /usr/local/bin/nsutil #Installing nsutil shared lib -RUN curl -L https://github.com/litmuschaos/test-tools/releases/download/${LITMUS_VERSION}/nsutil-${TARGETARCH}.so --output /usr/local/lib/nsutil.so && chmod +x /usr/local/lib/nsutil.so +RUN curl -L https://github.com/litmuschaos/test-tools/releases/download/${LITMUS_VERSION}/nsutil_${TARGETARCH}.so --output /usr/local/lib/nsutil.so && chmod +x /usr/local/lib/nsutil.so #Installing pause cli binaries RUN curl -L https://github.com/litmuschaos/test-tools/releases/download/${LITMUS_VERSION}/pause-linux-${TARGETARCH} --output /usr/local/bin/pause && chmod +x /usr/local/bin/pause