Files
open-cluster-management/Dockerfile
Zhiwei Yin 8108c8d355 change a community builder image (#199)
Signed-off-by: Zhiwei Yin <zyin@redhat.com>
2022-01-28 22:36:26 -05:00

14 lines
462 B
Docker

FROM quay.io/bitnami/golang:1.17 AS builder
WORKDIR /go/src/open-cluster-management.io/registration-operator
COPY . .
ENV GO_PACKAGE open-cluster-management.io/registration-operator
RUN make build --warn-undefined-variables
FROM registry.access.redhat.com/ubi8/ubi-minimal:latest
ENV USER_UID=10001
COPY --from=builder /go/src/open-cluster-management.io/registration-operator/registration-operator /
RUN microdnf update && microdnf clean all
USER ${USER_UID}