Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions openliberty-kernel/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
FROM airhacks/java
LABEL maintainer="Tobias N. Sasse, @tnsasse and Adam Bien, adam-bien.com" description="OpenLiberty Kernel"
ENV RELEASE 2017-09-27_1951
ENV VERSION 17.0.0.3

ENV VERSION 17.0.0.4
ENV SHA 8709c75cf905051e043b8c63e25640b464e58e39
ENV INSTALL_DIR /opt/ibm

# Download OpenLiberty
ENV OPENLIBERTY_HOME ${INSTALL_DIR}/openliberty-${VERSION}
ENV DEPLOYMENT_DIR ${OPENLIBERTY_HOME}/standalone/deployments/
RUN curl -O https://public.dhe.ibm.com/ibmdl/export/pub/software/openliberty/runtime/release/${RELEASE}/openliberty-${VERSION}.zip \
&& unzip openliberty-${VERSION}.zip -d ${INSTALL_DIR} \
&& rm openliberty-${VERSION}.zip
RUN curl -O https://repo1.maven.org/maven2/io/openliberty/openliberty-runtime/${VERSION}/openliberty-runtime-${VERSION}.zip \
&& echo "$SHA openliberty-runtime-${VERSION}.zip" > openliberty-runtime-${VERSION}.zip.sha1 \
&& sha1sum -c openliberty-runtime-${VERSION}.zip.sha1 \
&& unzip -q openliberty-runtime-${VERSION}.zip -d ${INSTALL_DIR} \
&& rm openliberty-runtime-${VERSION}.zip \
&& rm openliberty-runtime-${VERSION}.zip.sha1

ENV PATH=/opt/ibm/wlp/bin:$PATH

# Set Path Shortcuts
Expand Down
2 changes: 1 addition & 1 deletion openliberty-microprofile/server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<!-- Enable features -->
<featureManager>
<feature>microProfile-1.0</feature>
<feature>microProfile-1.2</feature>
</featureManager>

<!-- To allow access to this server from a remote client host="*" has been added to the following element -->
Expand Down