diff --git a/Dockerfile b/Dockerfile index b98da01..8e12210 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # NAME ibm/spectrumprotect-oc -# VERSION 8.1.7 +# VERSION 8.1.9 # BUILD docker build -t="ibm/spectrumprotect-oc:latest" . # Since SP is supported on RHEL and its not available in docker, we'll use CentOS. @@ -12,9 +12,9 @@ COPY install-oc.xml /tmp/ # Installation # http://public.dhe.ibm.com/storage/tivoli-storage-management/maintenance/server/v8r1/Linux/8.1.?.???/x86_64/ ... for maintenance releases (without license files). -RUN SOURCE_URL=http://YOUR_SITE_URL_HERE && \ +RUN SOURCE_URL=http://YOUR_SITE_URL_HERE SOURCE=8.1.9.000-IBM-SPSRV-Linuxx86_64.bin && \ mkdir -p /tmp/build && cd /tmp/build && \ - curl -SL ${SOURCE_URL}/8.1.7.000-IBM-SPSRV-Linuxx86_64.bin > tsm && chmod +x tsm && ./tsm && rm -f tsm && \ + curl -SL ${SOURCE_URL}/${SOURCE} > tsm && chmod +x tsm && ./tsm && rm -f tsm && \ ./install.sh -s -input /tmp/install-oc.xml -acceptLicense && \ rm -rf /tmp/build /tmp/install*xml