From ef09be8b79168b4cc9b79e38475207dc60ffb228 Mon Sep 17 00:00:00 2001 From: Varun Jain <10041968+varun-2108@users.noreply.github.com> Date: Mon, 28 Oct 2024 12:25:12 +0530 Subject: [PATCH] Fixed Docker tls assets download command (#472) Signed-off-by: Varun Jain <10041968+varun-2108@users.noreply.github.com> Co-authored-by: Animesh Pathak <53110238+Sonichigo@users.noreply.github.com> --- versioned_docs/version-2.0.0/running-keploy/docker-tls.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/versioned_docs/version-2.0.0/running-keploy/docker-tls.md b/versioned_docs/version-2.0.0/running-keploy/docker-tls.md index e0d046d38..8010ec16b 100644 --- a/versioned_docs/version-2.0.0/running-keploy/docker-tls.md +++ b/versioned_docs/version-2.0.0/running-keploy/docker-tls.md @@ -27,8 +27,8 @@ keywords: ```dockerfile # Download the ca.crt file - RUN curl -o ca.crt https://raw.githubusercontent.com/keploy/keploy/main/pkg/core/proxy/asset/ca.crt - RUN curl -o setup_ca.sh https://raw.githubusercontent.com/keploy/keploy/main/pkg/core/proxy/asset/setup_ca.sh + RUN curl -o ca.crt https://raw.githubusercontent.com/keploy/keploy/refs/heads/main/pkg/core/proxy/tls/asset/ca.crt + RUN curl -o setup_ca.sh https://raw.githubusercontent.com/keploy/keploy/refs/heads/main/pkg/core/proxy/tls/asset/setup_ca.sh # Give execute permission to the setup_ca.sh script RUN chmod +x setup_ca.sh