Files
open-cluster-management/Dockerfile
Zhiwei 50bfd2d908 promote go to 1.15
Signed-off-by: ZhiweiYin <zyin@redhat.com>
2021-02-25 09:04:42 +08:00

10 lines
467 B
Docker

FROM docker.io/openshift/origin-release:golang-1.15 AS builder
WORKDIR /go/src/github.com/open-cluster-management/registration-operator
COPY . .
ENV GO_PACKAGE github.com/open-cluster-management/registration-operator
RUN make build --warn-undefined-variables
FROM registry.access.redhat.com/ubi8/ubi-minimal:latest
COPY --from=builder /go/src/github.com/open-cluster-management/registration-operator/registration-operator /
RUN microdnf update && microdnf clean all