eerste push
This commit is contained in:
22
Dockerfile
Normal file
22
Dockerfile
Normal file
@@ -0,0 +1,22 @@
|
||||
FROM icr.io/appcafe/open-liberty:kernel-slim-java17-openj9-ubi
|
||||
|
||||
ARG VERSION=1.0
|
||||
ARG REVISION=SNAPSHOT
|
||||
|
||||
LABEL \
|
||||
org.opencontainers.image.authors="Your Name" \
|
||||
org.opencontainers.image.vendor="IBM" \
|
||||
org.opencontainers.image.url="local" \
|
||||
org.opencontainers.image.source="https://github.com/OpenLiberty/guide-getting-started" \
|
||||
org.opencontainers.image.version="$VERSION" \
|
||||
org.opencontainers.image.revision="$REVISION" \
|
||||
vendor="Open Liberty" \
|
||||
name="system" \
|
||||
version="$VERSION-$REVISION" \
|
||||
summary="The system microservice from the Getting Started guide" \
|
||||
description="This image contains the system microservice running with the Open Liberty runtime."
|
||||
|
||||
COPY --chown=1001:0 src/main/liberty/config/ /config/
|
||||
RUN features.sh
|
||||
COPY --chown=1001:0 target/*.war /config/apps/
|
||||
RUN configure.sh
|
||||
Reference in New Issue
Block a user