| 12345678910111213141516171819202122232425 |
- FROM icr.io/appcafe/open-liberty:kernel-slim-java11-openj9-ubi
- ARG VERSION=1.0
- ARG REVISION=SNAPSHOT
- LABEL \
- org.opencontainers.image.authors="Arkhadius" \
- org.opencontainers.image.vendor="Hanoman" \
- org.opencontainers.image.url="local" \
- org.opencontainers.image.source="https://code.senomas.com/arkha/btnmw-was/MWUI" \
- org.opencontainers.image.version="$VERSION" \
- org.opencontainers.image.revision="$REVISION" \
- vendor="Hanoman" \
- name="mwui" \
- version="$VERSION-$REVISION" \
- summary="The MWUI microservice from the Containerizing microservices MWUI" \
- description="This image contains the MWUI microservice running with the Open Liberty runtime."
- USER root
- COPY --chown=1001:0 src/main/liberty/config/server.xml /config/
- RUN features.sh
- COPY --chown=1001:0 target/*.war /config/apps
- RUN configure.sh
- USER 1001
|