1
0
mirror of https://github.com/kubernetes-sigs/descheduler.git synced 2026-01-26 05:14:13 +01:00

Merge pull request #449 from KohlsTechnology/arm-image

Enable Multi-Arch Container Image Builds
This commit is contained in:
Kubernetes Prow Robot
2020-12-03 17:55:25 -08:00
committed by GitHub
5 changed files with 40 additions and 6 deletions

View File

@@ -15,8 +15,9 @@ FROM golang:1.15.5
WORKDIR /go/src/sigs.k8s.io/descheduler
COPY . .
ARG ARCH
ARG VERSION
RUN VERSION=${VERSION} make
RUN VERSION=${VERSION} make build.$ARCH
FROM scratch