File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ RUN microdnf update && microdnf install util-linux curl tar
1515
1616ARG USERNAME
1717ARG PASSWORD
18- ARG DOWNLOAD_URL=http://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/integration/12.0.4.0-ACE-LINUX64-DEVELOPER.tar.gz
18+ # Download and reference the ACE-LINUX64-DEVELOPER.tar.gz from here https://www.ibm.com/resources/mrs/assets?source=swg-wmbfd eg.
19+ ARG DOWNLOAD_URL=<Your downloaded location>/12.0.4.0-ACE-LINUX64-DEVELOPER.tar.gz
1920
2021RUN mkdir -p /opt/ibm/ace-12 \
2122 && if [ -z $USERNAME ]; then curl ${DOWNLOAD_URL}; else curl -u "${USERNAME}:${PASSWORD}" ${DOWNLOAD_URL}; fi | \
Original file line number Diff line number Diff line change 2929docker build -t ace --build-arg USERNAME=< Username> --build-arg PASSWORD=< Password> --build-arg DOWNLOAD_URL=${DOWNLOAD_URL} --file ./Dockerfile .
3030```
3131
32- NOTE: If no DOWNLOAD_URL is provided the build will use a copy of the App Connect Enterprise developer edition as referenced in the Dockerfile
32+ ### DOWNLOAD_URL
33+
34+ The link is likely to be of the form
35+ ```
36+ https://iwm.dhe.ibm.com/sdfdl/v2/regs2/mbford/Xa.2/Xb.WJL1cUPI9gANEhP8GuPD_qX1rj6x5R4yTUM7s_C2ue8/Xc.12.0.10.0-ACE-LINUX64-DEVELOPER.tar.gz/Xd./Xf.LpR.D1vk/Xg.12164875/Xi.swg-wmbfd/XY.regsrvs/XZ.pPVETUejcqPsVfDVKbdNu6IRpo4TkyKu/12.0.10.0-ACE-LINUX64-DEVELOPER.tar.gz
37+ ```
38+ Use this link as the DOWNLOAD_URL build parameter, adjusting the version numbers in the other files and parameters as needed.
3339
3440### Running the image
3541
You can’t perform that action at this time.
0 commit comments