mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
app/vmalert: add missing multiarch Dockerfile
This commit is contained in:
parent
be93e02085
commit
901710b9e2
1 changed files with 12 additions and 0 deletions
12
app/vmalert/multiarch/Dockerfile
Normal file
12
app/vmalert/multiarch/Dockerfile
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# See https://medium.com/on-docker/use-multi-stage-builds-to-inject-ca-certs-ad1e8f01de1b
|
||||||
|
ARG certs_image
|
||||||
|
ARG root_image
|
||||||
|
FROM $certs_image as certs
|
||||||
|
RUN apk --update --no-cache add ca-certificates
|
||||||
|
|
||||||
|
FROM $root_image
|
||||||
|
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
||||||
|
EXPOSE 8880
|
||||||
|
ENTRYPOINT ["/vmalert-prod"]
|
||||||
|
ARG TARGETARCH
|
||||||
|
COPY vmalert-${TARGETARCH}-prod ./vmalert-prod
|
Loading…
Reference in a new issue