You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: versioned_docs/version-2.0.0/running-keploy/docker-tls.md
+6-7
Original file line number
Diff line number
Diff line change
@@ -26,19 +26,18 @@ keywords:
26
26
2. Add the following commands to your Dockerfile to download the `ca.crt` file and the `setup_ca.sh` script.
27
27
28
28
```dockerfile
29
-
# Download the ca.crt file
30
-
RUN curl -o ca.crt https://raw.githubusercontent.com/keploy/keploy/refs/heads/main/pkg/core/proxy/tls/asset/ca.crt
31
-
RUN curl -o setup_ca.sh https://raw.githubusercontent.com/keploy/keploy/refs/heads/main/pkg/core/proxy/tls/asset/setup_ca.sh
29
+
# Install the ca-certificates package to use the system certificates (the below command is for Debian-based systems, you may need to adjust it for other distributions)
30
+
RUN apt-get update && apt-get install -y ca-certificates
31
+
# Download the ca.crt file and the setup_ca.sh script
0 commit comments