Merge "Build multi-arch images"

This commit is contained in:
Zuul 2020-07-24 20:34:09 +00:00 committed by Gerrit Code Review
commit bd20aaa75b
2 changed files with 8 additions and 3 deletions

View File

@ -6,6 +6,9 @@
docker_images:
- context: .
repository: vexxhost/node-labeler
arch:
- linux/amd64
- linux/arm64
- job:
name: node-labeler:image:upload

View File

@ -1,8 +1,10 @@
FROM golang:1.13 AS builder
WORKDIR /go/src/app
COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build
RUN CGO_ENABLED=0 GOOS=linux go build
FROM scratch
# NOTE(mnaser): https://github.com/containers/skopeo/issues/991
# FROM scratch
FROM debian:stable-slim
COPY --from=builder /go/src/app/node-labeler /node-labeler
ENTRYPOINT ["/node-labeler"]
ENTRYPOINT ["/node-labeler"]