Merge pull request #150 from jfcoz/fix/docker_arm64

fix Dockerfile for multi-arch
This commit is contained in:
David Randall 2023-08-26 05:19:24 -04:00 committed by GitHub
commit 784061630a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1,12 +1,12 @@
ARG ARCH="amd64" ARG ARCH="amd64"
ARG OS="linux" ARG OS="linux"
FROM alpine:3 FROM --platform=${OS}/${ARCH} alpine:3
ARG ARCH="amd64"
ARG OS="linux"
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>" LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
RUN apk add smartmontools RUN apk add smartmontools
ARG ARCH="amd64"
ARG OS="linux"
COPY .build/${OS}-${ARCH}/smartctl_exporter /bin/smartctl_exporter COPY .build/${OS}-${ARCH}/smartctl_exporter /bin/smartctl_exporter
EXPOSE 9633 EXPOSE 9633

View File

@ -12,7 +12,7 @@
# limitations under the License. # limitations under the License.
# Needs to be defined before including Makefile.common to auto-generate targets # Needs to be defined before including Makefile.common to auto-generate targets
DOCKER_ARCHS ?= amd64 DOCKER_ARCHS ?= amd64 arm64
DOCKER_REPO ?= prometheuscommunity DOCKER_REPO ?= prometheuscommunity
include Makefile.common include Makefile.common