Merge pull request #5 from treydock/docker

Fix Dockerfile
This commit is contained in:
treydock 2020-03-18 09:21:33 -04:00 committed by GitHub
commit 37a9541a57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 10 deletions

View File

@ -1,10 +1,8 @@
FROM golang:1.13 AS builder
RUN mkdir /build
ADD . /build/
WORKDIR /build
RUN make build
FROM scratch
WORKDIR /
COPY --from=builder /build/cgroup_exporter /cgroup_exporter
ARG ARCH="amd64"
ARG OS="linux"
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:glibc
ARG ARCH="amd64"
ARG OS="linux"
COPY .build/${OS}-${ARCH}/cgroup_exporter /cgroup_exporter
EXPOSE 9306
ENTRYPOINT ["/cgroup_exporter"]

View File

@ -1,5 +1,5 @@
# Needs to be defined before including Makefile.common to auto-generate targets
DOCKER_ARCHS ?= amd64 armv7 arm64 ppc64le s390x
DOCKER_ARCHS ?= amd64 armv7 arm64 ppc64le
DOCKER_REPO ?= treydock
include Makefile.common