Files
odo/Dockerfile.rhel
Mohammed Ahmed 2f7f4a0906 Buming odo version v2.0.5 -> v2.0.6 (#4464)
Signed-off-by: Mohammed Zeeshan Ahmed <mohammed.zee1000@gmail.com>
2021-03-03 12:45:22 +05:30

24 lines
1.0 KiB
Docker

# This Dockerfile builds an image containing the Linux, Mac and Windows version of odo
# layered on top of the ubi7/ubi image.
FROM registry.svc.ci.openshift.org/openshift/release:golang-1.13 AS builder
COPY . /go/src/github.com/openshift/odo
WORKDIR /go/src/github.com/openshift/odo
RUN make cross
FROM registry.access.redhat.com/ubi7/ubi
LABEL com.redhat.component=atomic-openshift-odo-cli-artifacts-container \
name=openshift/odo-cli-artifacts \
io.k8s.display-name=atomic-openshift-odo-cli-artifacts-image \
maintainer=devtools-deploy@redhat.com \
summary="This image contains the Linux, Mac and Windows version of odo"
# Change version as needed. Note no "-" is allowed
LABEL version=2.0.6
COPY --from=builder /go/src/github.com/openshift/odo/dist/bin/darwin-amd64/odo /usr/share/openshift/odo/mac/odo
COPY --from=builder /go/src/github.com/openshift/odo/dist/bin/windows-amd64/odo.exe /usr/share/openshift/odo/windows/odo.exe
COPY --from=builder /go/src/github.com/openshift/odo/dist/bin/linux-amd64/odo /usr/share/openshift/odo/linux/odo