2020-03-27 19:18:32 +00:00
|
|
|
# See https://medium.com/on-docker/use-multi-stage-builds-to-inject-ca-certs-ad1e8f01de1b
|
2024-09-03 12:00:25 +00:00
|
|
|
ARG certs_image=non-existing
|
2024-11-07 10:33:03 +00:00
|
|
|
ARG root_image=non-existing
|
2024-06-24 14:28:50 +00:00
|
|
|
FROM $certs_image AS certs
|
2020-03-27 19:18:32 +00:00
|
|
|
|
2023-02-09 22:01:16 +00:00
|
|
|
RUN apk update && apk upgrade && apk --update --no-cache add ca-certificates
|
2020-03-27 19:18:32 +00:00
|
|
|
|
2020-04-19 22:09:52 +00:00
|
|
|
FROM $root_image
|
2020-03-27 19:18:32 +00:00
|
|
|
|
2020-04-19 22:09:52 +00:00
|
|
|
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|