1
0

Dockerfile 861 B

12345678910111213141516171819202122232425
  1. FROM icr.io/appcafe/open-liberty:kernel-slim-java11-openj9-ubi
  2. ARG VERSION=1.0
  3. ARG REVISION=SNAPSHOT
  4. LABEL \
  5. org.opencontainers.image.authors="Arkhadius" \
  6. org.opencontainers.image.vendor="Hanoman" \
  7. org.opencontainers.image.url="local" \
  8. org.opencontainers.image.source="https://code.senomas.com/arkha/btnmw-was/MWUI" \
  9. org.opencontainers.image.version="$VERSION" \
  10. org.opencontainers.image.revision="$REVISION" \
  11. vendor="Hanoman" \
  12. name="mwui" \
  13. version="$VERSION-$REVISION" \
  14. summary="The MWUI microservice from the Containerizing microservices MWUI" \
  15. description="This image contains the MWUI microservice running with the Open Liberty runtime."
  16. USER root
  17. COPY --chown=1001:0 src/main/liberty/config/server.xml /config/
  18. RUN features.sh
  19. COPY --chown=1001:0 target/*.war /config/apps
  20. RUN configure.sh
  21. USER 1001