Last active
August 16, 2017 17:41
Revisions
-
Rohit Kelapure revised this gist
Aug 16, 2017 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ FROM websphere-liberty:kernel ARG REPOSITORIES_PROPERTIES="" @@ -9,6 +8,6 @@ COPY server.xml /config/ RUN if [ ! -z $REPOSITORIES_PROPERTIES ]; then mkdir /opt/ibm/wlp/etc/ \ && echo $REPOSITORIES_PROPERTIES > /opt/ibm/wlp/etc/repositories.properties; fi \ && installUtility install --acceptLicense batch-1.0 ssl-1.0 transportSecurity-1.0 \ && if [ ! -z $REPOSITORIES_PROPERTIES ]; then rm /opt/ibm/wlp/etc/repositories.properties; fi \ && rm -rf /output/workarea /output/logs -
Rohit Kelapure created this gist
Aug 15, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ FROM websphere-liberty:kernel ARG REPOSITORIES_PROPERTIES="" ADD SleepyBatchletSample-1.0.war /config/dropins/ COPY server.xml /config/ RUN if [ ! -z $REPOSITORIES_PROPERTIES ]; then mkdir /opt/ibm/wlp/etc/ \ && echo $REPOSITORIES_PROPERTIES > /opt/ibm/wlp/etc/repositories.properties; fi \ && installUtility install --acceptLicense batch-1.0 \ && if [ ! -z $REPOSITORIES_PROPERTIES ]; then rm /opt/ibm/wlp/etc/repositories.properties; fi \ && rm -rf /output/workarea /output/logs