mirror of
https://github.com/prometheus-community/smartctl_exporter.git
synced 2024-11-16 01:33:07 +01:00
Revert "fix Dockerfile for multi-arch"
This commit is contained in:
parent
784061630a
commit
54427b0c27
2 changed files with 4 additions and 4 deletions
|
@ -1,12 +1,12 @@
|
|||
ARG ARCH="amd64"
|
||||
ARG OS="linux"
|
||||
FROM --platform=${OS}/${ARCH} alpine:3
|
||||
ARG ARCH="amd64"
|
||||
ARG OS="linux"
|
||||
FROM alpine:3
|
||||
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
||||
|
||||
RUN apk add smartmontools
|
||||
|
||||
ARG ARCH="amd64"
|
||||
ARG OS="linux"
|
||||
COPY .build/${OS}-${ARCH}/smartctl_exporter /bin/smartctl_exporter
|
||||
|
||||
EXPOSE 9633
|
||||
|
|
2
Makefile
2
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
|
||||
|
|
Loading…
Reference in a new issue