mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
db5fe03170
For example, the following command will build VictoriaMetrics docker image on top of alpine image: ROOT_IMAGE=alpine make package-victoria-metrics
10 lines
304 B
Docker
10 lines
304 B
Docker
# 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
|