Skip to content

Commit

Permalink
feat(certificates): add support for custom CA certificates (mudler#880)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
vitorstone authored Nov 1, 2023
1 parent 5b596ea commit 6e1a234
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ RUN apt-get update && \
apt-get install -y ca-certificates curl patch pip cmake && apt-get clean


COPY --chmod=644 custom-ca-certs/* /usr/local/share/ca-certificates/
RUN update-ca-certificates

# Use the variables in subsequent instructions
RUN echo "Target Architecture: $TARGETARCH"
RUN echo "Target Variant: $TARGETVARIANT"
Expand Down
Empty file added custom-ca-certs/.keep
Empty file.

0 comments on commit 6e1a234

Please sign in to comment.