web2_backend (v1.0)
Published 2024-11-23 17:27:38 +05:00 by zinch
Installation
docker pull git.zinch.me/itmo/web2_backend:v1.0sha256:6a59fb6c03db7a82fd89873e8c152c409d3d1e5673f00313d2dd20084511b50fAbout this package
Docker image for WildFly project
Image Layers
| LABEL maintainer="Red Hat, Inc." |
| LABEL vendor="Red Hat, Inc." |
| LABEL url="https://www.redhat.com" |
| LABEL com.redhat.component="ubi9-minimal-container" name="ubi9-minimal" version="9.5" 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 9." |
| 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 9 Minimal" |
| LABEL io.openshift.expose-services="" |
| LABEL io.openshift.tags="minimal rhel9" |
| ENV container oci |
| COPY dir:26d047f52016e2a9f64a7f20013880d3158f648f83df82762d23c38cacbb891e in / |
| COPY file:b37d593713ee21ad52a4cd1424dc019a24f7966f85df0ac4b86d234302695328 in /etc/yum.repos.d/. |
| CMD ["/bin/bash"] |
| /bin/sh -c . /cachi2/cachi2.env && rm -rf /var/log/* |
| LABEL "build-date"="2024-11-14T14:09:46" "architecture"="x86_64" "vcs-type"="git" "vcs-ref"="ed8745a7a03752cc96aedcff40c4eb3ee49117c5" "build-date"="2024-11-14T14:03:48Z" "release"="1731593028" |
| /bin/sh |
| 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 fontconfig glibc-langpack-en ; microdnf clean all # buildkit |
| ENV JAVA_VERSION=jdk-21.0.5+11 |
| RUN /bin/sh -c set -eux; ARCH="$(rpm --query --queryformat='%{ARCH}' rpm)"; case "${ARCH}" in aarch64) ESUM='6482639ed9fd22aa2e704cc366848b1b3e1586d2bf1213869c43e80bca58fe5c'; BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.5%2B11/OpenJDK21U-jdk_aarch64_linux_hotspot_21.0.5_11.tar.gz'; ;; ppc64le) ESUM='3c6f4c358facfb6c19d90faf02bfe0fc7512d6b0e80ac18146bbd7e0d01deeef'; BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.5%2B11/OpenJDK21U-jdk_ppc64le_linux_hotspot_21.0.5_11.tar.gz'; ;; s390x) ESUM='51a7ca42cc2e8cb5f3e7a326c28912ee84ff0791a1ca66650a8c53af07510a7c'; BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.5%2B11/OpenJDK21U-jdk_s390x_linux_hotspot_21.0.5_11.tar.gz'; ;; x86_64) ESUM='3c654d98404c073b8a7e66bffb27f4ae3e7ede47d13284c132d40a83144bfd8c'; BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.5%2B11/OpenJDK21U-jdk_x64_linux_hotspot_21.0.5_11.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 -r "${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 ${JAVA_HOME}/lib/src.zip; # buildkit |
| RUN /bin/sh -c set -eux; echo "Verifying install ..."; fileEncoding="$(echo 'System.out.println(System.getProperty("file.encoding"))' | jshell -s -)"; [ "$fileEncoding" = 'UTF-8' ]; rm -rf ~/.java; echo "javac --version"; javac --version; echo "java --version"; java --version; echo "Complete." # buildkit |
| COPY --chmod=755 entrypoint.sh /__cacert_entrypoint.sh # buildkit |
| ENTRYPOINT ["/__cacert_entrypoint.sh"] |
| CMD ["jshell"] |
| LABEL org.opencontainers.image.source=https://github.com/jboss-dockerfiles/wildfly org.opencontainers.image.title=wildfly org.opencontainers.imag.url=https://github.com/jboss-dockerfiles/wildfly org.opencontainers.image.vendor=WildFly |
| RUN /bin/sh -c if ! [ -x "$(command -v groupadd)" ] && [ -x "$(command -v microdnf)" ]; then microdnf update -y && microdnf install --best --nodocs -y shadow-utils && microdnf clean all; fi # buildkit |
| WORKDIR /opt/jboss |
| RUN /bin/sh -c groupadd -r jboss -g 1000 && useradd -u 1000 -r -g jboss -m -d /opt/jboss -s /sbin/nologin -c "JBoss user" jboss && chmod 755 /opt/jboss # buildkit |
| ENV WILDFLY_VERSION=34.0.1.Final |
| ENV WILDFLY_SHA1=eca3a94bb8a91538f7f2642f9d04d89a25f53846 |
| ENV JBOSS_HOME=/opt/jboss/wildfly |
| USER root |
| RUN /bin/sh -c cd $HOME && curl -L -O https://github.com/wildfly/wildfly/releases/download/$WILDFLY_VERSION/wildfly-$WILDFLY_VERSION.tar.gz && sha1sum wildfly-$WILDFLY_VERSION.tar.gz | grep $WILDFLY_SHA1 && tar xf wildfly-$WILDFLY_VERSION.tar.gz && mv $HOME/wildfly-$WILDFLY_VERSION $JBOSS_HOME && rm wildfly-$WILDFLY_VERSION.tar.gz && chown -R jboss:0 ${JBOSS_HOME} && chmod -R g+rw ${JBOSS_HOME} # buildkit |
| ENV LAUNCH_JBOSS_IN_BACKGROUND=true |
| USER jboss |
| EXPOSE map[8080/tcp:{}] |
| CMD ["/opt/jboss/wildfly/bin/standalone.sh" "-b" "0.0.0.0"] |
| COPY /app/target/jsp-1.0-SNAPSHOT.war /opt/jboss/wildfly/standalone/deployments/ # buildkit |
| EXPOSE map[8080/tcp:{}] |
| CMD ["/opt/jboss/wildfly/bin/standalone.sh" "-b" "0.0.0.0"] |
Labels
| Key | Value |
|---|---|
| architecture | x86_64 |
| build-date | 2024-11-14T14:03:48Z |
| com.redhat.component | ubi9-minimal-container |
| com.redhat.license_terms | https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI |
| 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.38.0-dev |
| 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 9 Minimal |
| io.openshift.expose-services | |
| io.openshift.tags | minimal rhel9 |
| maintainer | Red Hat, Inc. |
| name | ubi9-minimal |
| org.opencontainers.imag.url | https://github.com/jboss-dockerfiles/wildfly |
| org.opencontainers.image.created | 2024-11-22T15:32:52.811Z |
| org.opencontainers.image.description | Docker image for WildFly project |
| org.opencontainers.image.jdk-version | 21 |
| org.opencontainers.image.licenses | MIT |
| org.opencontainers.image.revision | 327ad803849a810ab0c4c3c50c9d9de647ca89a9 |
| org.opencontainers.image.source | https://github.com/jboss-dockerfiles/wildfly |
| org.opencontainers.image.title | wildfly |
| org.opencontainers.image.url | https://github.com/jboss-dockerfiles/wildfly |
| org.opencontainers.image.vendor | WildFly |
| org.opencontainers.image.version | 34.0.1.Final-jdk21 |
| release | 1731593028 |
| summary | Provides the latest release of the minimal Red Hat Universal Base Image 9. |
| url | https://www.redhat.com |
| vcs-ref | ed8745a7a03752cc96aedcff40c4eb3ee49117c5 |
| vcs-type | git |
| vendor | Red Hat, Inc. |
| version | 9.5 |