File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
OracleLinuxDevelopers/oraclelinux8/ocne-tools/2.0 Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ # Copyright (c) 2024 Oracle and/or its affiliates.
2+ # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
4+ # hadolint ignore=DL3007
5+ FROM ghcr.io/oracle/oci-cli:latest
6+
7+ USER root
8+
9+ RUN dnf install -y oracle-olcne-release-el8 && \
10+ dnf config-manager --enable ol8_ocne ol8_addons ol8_baseos_latest ol8_appstream && \
11+ dnf install -y helm kubectl && \
12+ rm -rf /var/cache/dnf
13+
14+ COPY help.sh /opt/help.sh
15+
16+ USER oracle
17+
18+ ENTRYPOINT []
19+
20+ CMD ["/bin/bash" , "/opt/help.sh" ]
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ # Copyright (c) 2024 Oracle and/or its affiliates.
3+ # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
4+
5+ echo " OCNE/OKE Tools"
6+
7+ echo " oci-cli version: $( oci --version) "
8+ helm version --template=' helm version: {{.Version}}'
9+ echo ' '
10+ echo " kubectl versions: "
11+ kubectl version --client
You can’t perform that action at this time.
0 commit comments