Skip to content

Instantly share code, notes, and snippets.

@dmc5179
Created December 14, 2023 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmc5179/36ed73fb58dd53f6a66b27b064dd1e86 to your computer and use it in GitHub Desktop.
Save dmc5179/36ed73fb58dd53f6a66b27b064dd1e86 to your computer and use it in GitHub Desktop.
IBM RTC SCM CLI
FROM registry.access.redhat.com/ubi9
MAINTAINER Dan Clark <danclark@redhat.com>
LABEL description="IBM RTC SCM CLI"
COPY EWM-scmTools-Linux64-7.0.3.zip /usr/local
RUN dnf -y update && \
dnf -y install unzip && \
dnf clean all && \
pushd /usr/local && \
unzip EWM-scmTools-Linux64-7.0.3.zip && \
rm -f EWM-scmTools-Linux64-7.0.3.zip
ENV PATH="$PATH:/usr/local/jazz/scmtools/eclipse"
ENTRYPOINT ["sleep", "infinity"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment