2021-02-18 13:23:17 +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
|
|
|
|
ARG root_image=non-existing
|
2024-06-24 14:28:50 +00:00
|
|
|
FROM $certs_image AS certs
|
2023-02-09 22:01:16 +00:00
|
|
|
RUN apk update && apk upgrade && apk --update --no-cache add ca-certificates
|
2021-02-18 13:23:17 +00:00
|
|
|
|
|
|
|
FROM $root_image
|
|
|
|
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
|
|
EXPOSE 8880
|
|
|
|
ENTRYPOINT ["/vmalert-prod"]
|
2024-09-06 16:12:17 +00:00
|
|
|
ARG TARGETARCH
|
2022-07-14 07:59:05 +00:00
|
|
|
COPY vmalert-linux-${TARGETARCH}-prod ./vmalert-prod
|