mirror of
https://github.com/prometheus-community/smartctl_exporter.git
synced 2024-12-21 02:21:55 +01:00
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:
parent
bc49dec5a6
commit
261f0c0d83
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue