From 261f0c0d837eff9258fd2cd99b0fa7a7de1765e7 Mon Sep 17 00:00:00 2001 From: SuperQ Date: Wed, 5 Oct 2022 14:06:48 +0200 Subject: [PATCH] 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 --- Dockerfile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3b0cf06..855272c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ARG ARCH="amd64" ARG OS="linux" -FROM --platform ${OS}/${ARCH} alpine:3 +FROM alpine:3 LABEL maintainer="The Prometheus Authors " RUN apk add smartmontools diff --git a/Makefile b/Makefile index 7734713..3591265 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ # limitations under the License. # Needs to be defined before including Makefile.common to auto-generate targets -DOCKER_ARCHS ?= amd64 arm64 +DOCKER_ARCHS ?= amd64 DOCKER_REPO ?= prometheuscommunity include Makefile.common