Image Details

Summary
Image Reference registry.stroops.io/uselog/api-worker:latest
Digest sha256:aaed3a0bbdda49b31a95b62a4740862d157959584a8aa0ec361ca9064c17c1f0
Media Type application/vnd.docker.distribution.manifest.v2+json
Image ID e3cdd4286f5e
Image Size 196.9 MB
Platform linux/amd64
Created On 2024-12-13 07:50:13 UTC
Manifest
config
digest sha256:e3cdd4286f5ea3c20c6bb9e44594501630621129e53bf51608d923730278cd25
mediaType application/vnd.docker.container.image.v1+json
size 5 KB
layers
digest sha256:13c6d1737b3fa24b23e04ededc4bee27b6ef0b8d6484f424e82e43bd4973411d
mediaType application/vnd.docker.image.rootfs.diff.tar.gzip
size 96.2 MB
digest sha256:11355e365bd6b17d63dfdbfdcde32c2d665d9bdd9be998f6d6afb912c4e5a6eb
mediaType application/vnd.docker.image.rootfs.diff.tar.gzip
size 100.7 MB
digest sha256:5c6be7bfebeb7713f427828deb72090607093e6003e6a88cb06f3ebd0699cd12
mediaType application/vnd.docker.image.rootfs.diff.tar.gzip
size 5 KB
digest sha256:92444a44476597d4d7963b2bbcdfa90a9055e0e2e3787c1cb22159dc598e2f24
mediaType application/vnd.docker.image.rootfs.diff.tar.gzip
size 20 KB
digest sha256:adbd4ff392b5111b31dcb8af4bfcd02e0a547776b0627dcbf3fc8b5a84884818
mediaType application/vnd.docker.image.rootfs.diff.tar.gzip
size 2 KB
digest sha256:832019b92bb366918d65a9d839d9e2c65f821c20ed2a1c33efbaecce6a8fc7ac
mediaType application/vnd.docker.image.rootfs.diff.tar.gzip
size 347 B
mediaType application/vnd.docker.distribution.manifest.v2+json
schemaVersion 2
Config File
architecture amd64
config
Entrypoint
/bin/sh
-c
/entrypoint.sh
Env
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
LANGUAGE=en_US:en
JAVA_HOME=/usr/lib/jvm/liberica21-crac
SPRING_OUTPUT_ANSI_ENABLED=ALWAYS
APP_SLEEP=0
LANG=en_US.UTF-8
ExposedPorts
6002/tcp
Labels
maintainer [email protected]
org.opencontainers.image.authors BellSoft <[email protected]>
org.opencontainers.image.description Alpaquita Stream Musl based image with Liberica JDK 21, with CRaC, with CDS archives, with APK tools removed.
User 1000
created 2024-12-13T07:50:13.274483Z
history
created 2024-06-25T15:12:15.792816599Z
created_by /bin/sh -c #(nop) ARG JAVA_RELEASE
empty_layer true
created 2024-06-25T15:12:15.792840735Z
created_by /bin/sh -c #(nop) ARG BUNDLE_TYPE JAVA_RELEASE
empty_layer true
created 2024-06-25T15:12:15.792861828Z
created_by /bin/sh -c #(nop) ARG BUNDLE_TYPE CDS JAVA_RELEASE
empty_layer true
created 2024-06-25T15:12:15.792883036Z
created_by /bin/sh -c #(nop) ARG BUNDLE_TYPE CDS JAVA_RELEASE REMOVE_APK_TOOLS
empty_layer true
created 2024-06-25T15:12:15.792910482Z
created_by /bin/sh -c #(nop) ARG BUNDLE_TYPE CDS JAVA_RELEASE MAINTAINER REMOVE_APK_TOOLS
empty_layer true
created 2024-06-25T15:12:15.792947122Z
created_by /bin/sh -c #(nop) ARG BUNDLE_TYPE CDS DESCRIPTION JAVA_RELEASE MAINTAINER REMOVE_APK_TOOLS
empty_layer true
created 2024-06-25T15:12:15.792980665Z
created_by /bin/sh -c #(nop) LABEL maintainer="$MAINTAINER"
empty_layer true
created 2024-06-25T15:12:15.79301908Z
created_by /bin/sh -c #(nop) LABEL org.opencontainers.image.authors="$MAINTAINER"
empty_layer true
created 2024-06-25T15:12:15.793059329Z
created_by /bin/sh -c #(nop) LABEL org.opencontainers.image.description="$DESCRIPTION"
empty_layer true
created 2024-06-25T15:12:15.793125301Z
created_by /bin/sh -c #(nop) ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en
empty_layer true
created 2024-06-25T15:12:15.793167359Z
created_by /bin/sh -c #(nop) ENV JAVA_HOME="/usr/lib/jvm/liberica${JAVA_RELEASE}-crac"
empty_layer true
comment FROM docker.io/bellsoft/alpaquita-linux-base:stream-musl-240625
created 2024-06-25T15:12:39.110369678Z
created_by |24 BUNDLE_TYPE=jdk CDS=yes DESCRIPTION=Alpaquita Stream Musl based image with Liberica JDK 21, with CRaC, with CDS archives, with APK tools removed. JAVA_RELEASE=21 MAINTAINER=BellSoft <[email protected]> REMOVE_APK_TOOLS=yes /bin/sh -c set -e; command set -o pipefail; case "$JAVA_RELEASE" in 17|21) ;; *) echo -n "Invalid JAVA_RELEASE: '${JAVA_RELEASE}'. "; echo "Only '17' and '21' are supported."; exit 1; ;; esac; case "$BUNDLE_TYPE" in jre|jdk) ;; *) echo -n "Invalid BUNDLE_TYPE: '${BUNDLE_TYPE}'. "; echo "Only 'jre' and 'jdk' are supported."; exit 1; ;; esac; case "$CDS" in yes|no) ;; *) echo "Invalid CDS: '${CDS}'. "; echo "Only 'yes' and 'no' are supported."; exit 1; ;; esac; case "$REMOVE_APK_TOOLS" in yes|no) ;; *) echo "Invalid REMOVE_APK_TOOLS: '${REMOVE_APK_TOOLS}'. "; echo "Only 'yes' and 'no' are supported."; exit 1; ;; esac; apk add --no-cache "liberica${JAVA_RELEASE}-crac-${BUNDLE_TYPE}-no-deps"; if [ "$CDS" = "yes" ]; then apk add --no-cache "liberica${JAVA_RELEASE}-crac-jre-cds"; fi; if [ "$REMOVE_APK_TOOLS" = "yes" ]; then apk del --no-cache apk-tools; fi
author Jib
comment dependencies
created 2024-12-13T07:50:13.274483Z
created_by jib-maven-plugin:3.4.4
author Jib
comment resources
created 2024-12-13T07:50:13.274483Z
created_by jib-maven-plugin:3.4.4
author Jib
comment classes
created 2024-12-13T07:50:13.274483Z
created_by jib-maven-plugin:3.4.4
author Jib
comment jvm arg files
created 2024-12-13T07:50:13.274483Z
created_by jib-maven-plugin:3.4.4
author Jib
comment extra files
created 2024-12-13T07:50:13.274483Z
created_by jib-maven-plugin:3.4.4
os linux
rootfs
diff_ids
sha256:8fa19c9ad93d7079b7ebf202cebc875c830a400149b64381d4f7f70a326a193f
sha256:43589856507e31699fb2380e4ccbc051c967acc450f00947924a45ccd0ab8923
sha256:5ee14436e4af54b2872c9b15afa16629e61ea6e30352bb3fc9ef59f6083a812e
sha256:9835d3817ca39d35ca6c21bf08e8da109a6018c158f860dec419bb1134947f56
sha256:8df61997997ec8e25f2f2bd8eecc2acc3e17ab7d31895cd0f014914babc44fa3
sha256:47528470c87b8afa1d1d037806e185d83b9868f603ce07e1d08ab55ffb58b9dc
type layers