landingpage (7c77c584a3134a51232b3f3a5ec8f2f929607b0f)
Published 2025-12-06 05:04:56 +00:00 by tim
Installation
docker pull git.wundenbergs.de/x/landingpage:7c77c584a3134a51232b3f3a5ec8f2f929607b0fsha256:66b0babbc7a49fb54443f032b0e729745de804e346f81ddbd17ab4aea6a2e727
Image Layers
| LABEL maintainer="Red Hat, Inc." |
| LABEL vendor="Red Hat, Inc." |
| LABEL url="https://catalog.redhat.com/en/search?searchType=containers" |
| LABEL com.redhat.component="ubi10-minimal-container" name="ubi10/ubi-minimal" version="10.1" cpe="cpe:/o:redhat:enterprise_linux:10.1" distribution-scope="public" |
| LABEL com.redhat.license_terms="https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI" |
| LABEL summary="Provides the latest release of the minimal Red Hat Universal Base Image 10." |
| LABEL description="The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly." |
| LABEL io.k8s.description="The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly." |
| LABEL io.k8s.display-name="Red Hat Universal Base Image 10 Minimal" |
| LABEL io.openshift.expose-services="" |
| LABEL io.openshift.tags="minimal rhel10" |
| ENV container oci |
| COPY dir:e3f52ba99077b3bc7b7921467816c9e1d6afafe638b5c85f61d17a96c866d5a4 in / |
| COPY file:5de33b5fc08b00635bccf9134a18978dba13e2250aa51838f9969515a3957847 in /etc/yum.repos.d/. |
| CMD ["/bin/bash"] |
| COPY file:595171150af68abc798ea385f7988d74b566aa8e84babff137f00b08b2164683 in /usr/share/buildinfo/content-sets.json |
| COPY file:595171150af68abc798ea385f7988d74b566aa8e84babff137f00b08b2164683 in /root/buildinfo/content_manifests/content-sets.json |
| COPY file:922399bb1f6dd7741b16f1cdd9842f87612db7b462e38b1bbeae37d5c71e21d7 in /usr/share/buildinfo/labels.json |
| COPY file:922399bb1f6dd7741b16f1cdd9842f87612db7b462e38b1bbeae37d5c71e21d7 in /root/buildinfo/labels.json |
| LABEL "architecture"="x86_64" "vcs-type"="git" "vcs-ref"="f3ce7416a648177fb2c54fd1c28cc0dab0304a68" "org.opencontainers.image.revision"="f3ce7416a648177fb2c54fd1c28cc0dab0304a68" "build-date"="2025-12-01T15:51:47Z" "org.opencontainers.image.created"="2025-12-01T15:51:47Z" "release"="1764604111"org.opencontainers.image.revision=f3ce7416a648177fb2c54fd1c28cc0dab0304a68,org.opencontainers.image.created=2025-12-01T15:51:47Z |
| ENV JAVA_HOME=/opt/java/openjdk |
| ENV PATH=/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 |
| RUN /bin/sh -c set -eux; microdnf install -y gzip tar binutils tzdata wget ca-certificates openssl fontconfig glibc-langpack-en gnupg2 ; microdnf clean all # buildkit |
| ENV JAVA_VERSION=jdk-25.0.1+8 |
| RUN /bin/sh -c set -eux; ARCH="$(rpm --query --queryformat='%{ARCH}' rpm)"; case "${ARCH}" in aarch64) ESUM='5371ad922cb4ff571a57c8e5dd14485ebf5b3994cd71e6ea09088312de3bed71'; BINARY_URL='https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25.0.1%2B8/OpenJDK25U-jre_aarch64_linux_hotspot_25.0.1_8.tar.gz'; ;; ppc64le) ESUM='c812bf806d7ffcd290c6bd814324aa81f0688e2d682fd0b87e2c7c76251a4f2c'; BINARY_URL='https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25.0.1%2B8/OpenJDK25U-jre_ppc64le_linux_hotspot_25.0.1_8.tar.gz'; ;; s390x) ESUM='c58764b69cb70e7b532f50e8a20e74aa5cb65e85c3e500225e0b64719a6021a0'; BINARY_URL='https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25.0.1%2B8/OpenJDK25U-jre_s390x_linux_hotspot_25.0.1_8.tar.gz'; ;; x86_64) ESUM='126c7f59b91df97b2e930b0a456422ce29af7f2385117e1c04297eba962b0b1c'; BINARY_URL='https://github.com/adoptium/temurin25-binaries/releases/download/jdk-25.0.1%2B8/OpenJDK25U-jre_x64_linux_hotspot_25.0.1_8.tar.gz'; ;; *) echo "Unsupported arch: ${ARCH}"; exit 1; ;; esac; wget --progress=dot:giga -O /tmp/openjdk.tar.gz ${BINARY_URL}; wget --progress=dot:giga -O /tmp/openjdk.tar.gz.sig ${BINARY_URL}.sig; export GNUPGHOME="$(mktemp -d)"; gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 3B04D753C9050D9A5D343F39843C48A565F8F04B; gpg --batch --verify /tmp/openjdk.tar.gz.sig /tmp/openjdk.tar.gz; rm -rf "${GNUPGHOME}" /tmp/openjdk.tar.gz.sig; echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; mkdir -p "$JAVA_HOME"; tar --extract --file /tmp/openjdk.tar.gz --directory "$JAVA_HOME" --strip-components 1 --no-same-owner ; rm -f /tmp/openjdk.tar.gz; # buildkit |
| RUN /bin/sh -c set -eux; echo "Verifying install ..."; echo "java --version"; java --version; echo "Complete." # buildkit |
| COPY --chmod=755 entrypoint.sh /__cacert_entrypoint.sh # buildkit |
| ENTRYPOINT ["/__cacert_entrypoint.sh"] |
| WORKDIR /opt/app/ |
| ENV TZ=Europe/Berlin |
| COPY /landingpage/build/libs/landingpage-0.0.1-SNAPSHOT.jar ./ # buildkit |
| ENTRYPOINT ["java" "-jar" "landingpage-0.0.1-SNAPSHOT.jar"] |
Labels
| Key | Value |
|---|---|
| architecture | x86_64 |
| build-date | 2025-12-01T15:51:47Z |
| com.redhat.component | ubi10-minimal-container |
| com.redhat.license_terms | https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI |
| cpe | cpe:/o:redhat:enterprise_linux:10.1 |
| description | The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly. |
| distribution-scope | public |
| io.buildah.version | 1.41.4 |
| io.k8s.description | The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly. |
| io.k8s.display-name | Red Hat Universal Base Image 10 Minimal |
| io.openshift.expose-services | |
| io.openshift.tags | minimal rhel10 |
| maintainer | Red Hat, Inc. |
| name | ubi10/ubi-minimal |
| org.opencontainers.image.created | 2025-12-01T15:51:47Z |
| org.opencontainers.image.revision | f3ce7416a648177fb2c54fd1c28cc0dab0304a68 |
| release | 1764604111 |
| summary | Provides the latest release of the minimal Red Hat Universal Base Image 10. |
| url | https://catalog.redhat.com/en/search?searchType=containers |
| vcs-ref | f3ce7416a648177fb2c54fd1c28cc0dab0304a68 |
| vcs-type | git |
| vendor | Red Hat, Inc. |
| version | 10.1 |
Details
2025-12-06 05:04:56 +00:00
Versions (21)
View all
Container
0
OCI / Docker
linux/amd64
163 MiB
7c77c584a3134a51232b3f3a5ec8f2f929607b0f
2025-12-06
latest
2025-12-06
0e47735a7998eee5921def37f27840c67748a64f
2025-12-04
12a29da3937c9d3cd5aae8b09c6f90aec7c321bc
2025-12-02
f82d696ee251ef519dae45bfca91c6ea3aab6bbd
2025-12-02