Corporate Proxy: x509: certificate signed by unknown authority #135
-
Hi, I am new to paketo and currently I am trying to follow the official howto guide for .Net Core Unfortunately, when running
I am behind a corporate proxy and I guess its HTTPs interception breaks the chain of trust. Please note, that pack (resp. docker) was able to download the base image. Also my
Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It is not the buildpack that's failing to download, it is the dependency that the buildpack is trying to install. If you would rather it pull them from somewhere else, you can use https://paketo.io/docs/reference/configuration/#dependency-mappings and point individual dependencies to a server that is on your LAN or accessible without going through the proxy. Some Paketo buildpacks also support a
You need to pass the CA certificate that your company is using to rewrite & sign certificates into the buildpacks. See https://paketo.io/docs/reference/configuration/#ca-certificates. |
Beta Was this translation helpful? Give feedback.
It is not the buildpack that's failing to download, it is the dependency that the buildpack is trying to install. If you would rather it pull them from somewhere else, you can use https://paketo.io/docs/reference/configuration/#dependency-mappings and point individual dependencies to a server that is on your LAN or accessible without going through the proxy.
Some Paketo buildpacks also support a
file://
URL, so you can mount a volume with your dependencies and add a dependency mapping that points to the mounted volume. I do not know if the one you're using supports that though.