Skip to content

Commit 6e1a234

Browse files
authored
feat(certificates): add support for custom CA certificates (#880)
This change facilitates users working behind corporate firewalls or proxies. By allowing the integration of custom CA certificates, users can handle SSL connections that are intercepted by company infrastructure.
1 parent 5b596ea commit 6e1a234

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ RUN apt-get update && \
2222
apt-get install -y ca-certificates curl patch pip cmake && apt-get clean
2323

2424

25+
COPY --chmod=644 custom-ca-certs/* /usr/local/share/ca-certificates/
26+
RUN update-ca-certificates
27+
2528
# Use the variables in subsequent instructions
2629
RUN echo "Target Architecture: $TARGETARCH"
2730
RUN echo "Target Variant: $TARGETVARIANT"

custom-ca-certs/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)