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