Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OPRUN-3221: rename from 'clis' to 'tools' #718

Merged
merged 1 commit into from Mar 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -14,15 +14,15 @@ RUN make build/registry cross

FROM scratch

COPY --from=builder /src/bin/opm /clis/opm-rhel9
COPY --from=builder /src/bin/darwin-amd64-opm /clis/darwin-amd64-opm
COPY --from=builder /src/bin/windows-amd64-opm /clis/windows-amd64-opm
COPY --from=builder /src/bin/opm /tools/opm-rhel9
COPY --from=builder /src/bin/darwin-amd64-opm /tools/darwin-amd64-opm
COPY --from=builder /src/bin/windows-amd64-opm /tools/windows-amd64-opm

# copy the dynamically-linked versions to /clis with a -rhel8 suffix
COPY --from=builder-rhel8 /src/bin/opm /clis/opm-rhel8
# copy the dynamically-linked versions to /tools with a -rhel8 suffix
COPY --from=builder-rhel8 /src/bin/opm /tools/opm-rhel8

USER 1001

LABEL io.k8s.display-name="OpenShift Operator Framework CLIs" \
io.k8s.description="This is a non-runnable image containing binary builds of various Operator Framework CLI tools, primarily used to publish binaries to the OpenShift mirror." \
LABEL io.k8s.display-name="OpenShift Operator Framework Tools" \
io.k8s.description="This is a non-runnable image containing binary builds of various Operator Framework tools, primarily used to publish binaries to the OpenShift mirror." \
maintainer="Odin Team <aos-odin@redhat.com>"