Dockerfile 890 B

1234567891011121314151617181920212223242526272829
  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" \
  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. COPY --chown=1001:0 \
  17. target/liberty/wlp/usr/servers/defaultServer/server.xml \
  18. /config/
  19. RUN features.sh
  20. COPY --chown=1001:0 \
  21. target/MWUI-1.0.war \
  22. /config/apps
  23. RUN configure.sh