2021-02-12 03:31:19 +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
|
2023-02-09 23:01:16 +01:00
|
|
|
RUN apk update && apk upgrade && apk --update --no-cache add ca-certificates
|
2021-02-12 03:31:19 +01:00
|
|
|
|
|
|
|
FROM $root_image
|
|
|
|
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
|
|
ENTRYPOINT ["/vmbackup-prod"]
|
2024-09-06 18:12:17 +02:00
|
|
|
ARG TARGETARCH
|
2022-07-14 09:59:05 +02:00
|
|
|
COPY vmbackup-linux-${TARGETARCH}-prod ./vmbackup-prod
|