Drop arm64 Docker image

Drop the arm64 Docker image until we figure out a good cross-build setup
for alpine-based builds.

Fixes: https://github.com/prometheus-community/smartctl_exporter/issues/78

Signed-off-by: SuperQ <superq@gmail.com>
This commit is contained in:
SuperQ 2022-10-05 14:06:48 +02:00
parent bc49dec5a6
commit 261f0c0d83
No known key found for this signature in database
GPG Key ID: C646B23C9E3245F1
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
ARG ARCH="amd64" ARG ARCH="amd64"
ARG OS="linux" ARG OS="linux"
FROM --platform ${OS}/${ARCH} alpine:3 FROM alpine:3
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

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 arm64 DOCKER_ARCHS ?= amd64
DOCKER_REPO ?= prometheuscommunity DOCKER_REPO ?= prometheuscommunity
include Makefile.common include Makefile.common