2020-03-27 19:18:32 +00:00
|
|
|
# See https://medium.com/on-docker/use-multi-stage-builds-to-inject-ca-certs-ad1e8f01de1b
|
2020-04-19 22:09:52 +00:00
|
|
|
ARG certs_image
|
|
|
|
ARG root_image
|
|
|
|
FROM $certs_image as certs
|
2020-03-27 19:18:32 +00:00
|
|
|
|
2021-02-08 12:00:57 +00:00
|
|
|
RUN apk --update --no-cache add ca-certificates tzdata
|
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
|
2021-02-08 12:00:57 +00:00
|
|
|
COPY --from=certs /usr/share/zoneinfo /usr/share/zoneinfo/
|