Image Details

Summary
Image Reference registry.stroops.io/uselog/api-worker:0.0.2
Digest sha256:abb5217ba13f155a979fc5e834b552480bc5c10b633c9288f66a667c61719921
Media Type application/vnd.docker.distribution.manifest.v2+json
Image ID 88dbc4a39e24
Image Size 195.3 MB
Platform linux/amd64
Created On 2024-11-29 10:52:25 UTC
Manifest
config
digest sha256:88dbc4a39e2432d3609787a22360b069302c69c16b0589257a7d64b56eb68062
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:80e0adb601ea940cee0e73c4438c314344479b33610e504c9002ff3a2f2c5188
mediaType application/vnd.docker.image.rootfs.diff.tar.gzip
size 99.0 MB
digest sha256:e0edb9b0e233f01d65935e461b1e4d1186feb486c6382f251ccd8fdbfa284c67
mediaType application/vnd.docker.image.rootfs.diff.tar.gzip
size 3 KB
digest sha256:b60c4f51bd9d8ae6f9a8615e8d8baa2a859cb641455dc0fd119c01ffce2ec5ac
mediaType application/vnd.docker.image.rootfs.diff.tar.gzip
size 20 KB
digest sha256:1f46fa1748634e3e75f555389da65a6d2b04eb3c72f158426dd3696588d7a8e4
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-11-29T10:52:25.601435Z
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-11-29T10:52:25.601435Z
created_by jib-maven-plugin:3.4.4
author Jib
comment resources
created 2024-11-29T10:52:25.601435Z
created_by jib-maven-plugin:3.4.4
author Jib
comment classes
created 2024-11-29T10:52:25.601435Z
created_by jib-maven-plugin:3.4.4
author Jib
comment jvm arg files
created 2024-11-29T10:52:25.601435Z
created_by jib-maven-plugin:3.4.4
author Jib
comment extra files
created 2024-11-29T10:52:25.601435Z
created_by jib-maven-plugin:3.4.4
os linux
rootfs
diff_ids
sha256:8fa19c9ad93d7079b7ebf202cebc875c830a400149b64381d4f7f70a326a193f
sha256:c708aad277ea345ca5956792b132c19b236e43be75f8cfad7b68f141c335e6c1
sha256:ebfa537c204dda23040d95588b67907f9f97fcf2e801e5cd317fe3535d8d80af
sha256:4c5d0f9605454441c9b01c917d0fbe70571afaf9506986eff2d9acccb4ab472c
sha256:f46c8fb666d7fe5ca4b03463aadeb3b5a21160dd09e860e7f50397ebc56db90c
sha256:47528470c87b8afa1d1d037806e185d83b9868f603ce07e1d08ab55ffb58b9dc
type layers