Skip to content

Instantly share code, notes, and snippets.

@garethahealy
Created March 29, 2021 13:04
Show Gist options
  • Save garethahealy/eb33cf9415e1ec60fc8cf1934f5826eb to your computer and use it in GitHub Desktop.
Save garethahealy/eb33cf9415e1ec60fc8cf1934f5826eb to your computer and use it in GitHub Desktop.
containers-quickstarts/build-s2i-play - ocp4 logs
Cloning "https://github.com/redhat-cop/containers-quickstarts.git" ...
Commit: 1f147919008e15a1d02cbcaedae8acc16917a713 (Update GH actions to use redhat-actions for build & publish (#463))
Author: Petter Abrahamsson <petter@redhat.com>
Date: Mon Mar 29 06:16:02 2021 -0400
Replaced Dockerfile FROM image rhel7-atomic
Caching blobs under "/var/cache/blobs".
Pulling image registry.access.redhat.com/rhel7/rhel-atomic@sha256:ccf4374142b6c0e1782b751f43f2d1012a5cc604056300dd9feda0d77844082d ...
Getting image source signatures
Copying blob sha256:c0d48602e1ab40abadbbf6085cbc2b73cacf6e6c59498133d89e735d0c6e8dc4
Copying blob sha256:aa37921685e8672bc9a8f881f70e8c94d00b6c6c68a0aa47a129464168aef766
Copying config sha256:efe75df3392e88f5f46d4eeb78b4db38ede451aae8b55ed2c6244062fc4ba9fc
Writing manifest to image destination
Storing signatures
Adding transient rw bind mount for /run/secrets/rhsm
STEP 1: FROM registry.access.redhat.com/rhel7/rhel-atomic@sha256:ccf4374142b6c0e1782b751f43f2d1012a5cc604056300dd9feda0d77844082d
STEP 2: MAINTAINER Andrew Block <ablock@redhat.com>
--> 8c11e6a803b
STEP 3: LABEL io.k8s.description="Platform for building Play Framework Applications" io.k8s.display-name="Play Framework" io.openshift.expose-services="8080:http" io.openshift.tags="builder,webserver,html,play" io.openshift.s2i.scripts-url="image:///usr/libexec/s2i" io.openshift.s2i.destination="/opt/app-root"
--> 16119ef959b
STEP 4: ENV ACTIVATOR_VERSION=1.3.10 HOME=/opt/app-root/src
--> b5448c208f7
STEP 5: COPY s2i /usr/libexec/s2i
--> 66f7a9ce86c
STEP 6: RUN INSTALL_PKGS="tar unzip bc gzip which lsof shadow-utils java-1.8.0-openjdk java-1.8.0-openjdk-devel" && microdnf --enablerepo=rhel-7-server-rpms install -y $INSTALL_PKGS && microdnf update && microdnf clean all && useradd -u 1001 -r -g 0 -d ${HOME} -s /sbin/nologin -c "Default Application User" default && mkdir -p ${HOME} /opt/activator /opt/s2i/destination/src/ /deployments && chown -R 1001:0 /opt/app-root /opt/activator /opt/s2i/destination/src/ /deployments && chmod -R "a+rwX" /deployments && curl -o /tmp/typesafe-activator-${ACTIVATOR_VERSION}.zip https://downloads.typesafe.com/typesafe-activator/${ACTIVATOR_VERSION}/typesafe-activator-${ACTIVATOR_VERSION}.zip && unzip /tmp/typesafe-activator-${ACTIVATOR_VERSION}.zip -d /tmp && mv /tmp/activator-dist-${ACTIVATOR_VERSION}/* /opt/activator && chown -R 1001:0 /opt/activator && rm -rf /tmp/typesafe-activator-${ACTIVATOR_VERSION}.zip /tmp/activator-dist-${ACTIVATOR_VERSION}
(microdnf:8): librhsm-WARNING **: 13:00:52.246: Found 0 entitlement certificates
(microdnf:8): librhsm-WARNING **: 13:00:52.249: Found 0 entitlement certificates
error: repo rhel-7-server-rpms not found
error: build error: error building at STEP "RUN INSTALL_PKGS="tar unzip bc gzip which lsof shadow-utils java-1.8.0-openjdk java-1.8.0-openjdk-devel" && microdnf --enablerepo=rhel-7-server-rpms install -y $INSTALL_PKGS && microdnf update && microdnf clean all && useradd -u 1001 -r -g 0 -d ${HOME} -s /sbin/nologin -c "Default Application User" default && mkdir -p ${HOME} /opt/activator /opt/s2i/destination/src/ /deployments && chown -R 1001:0 /opt/app-root /opt/activator /opt/s2i/destination/src/ /deployments && chmod -R "a+rwX" /deployments && curl -o /tmp/typesafe-activator-${ACTIVATOR_VERSION}.zip https://downloads.typesafe.com/typesafe-activator/${ACTIVATOR_VERSION}/typesafe-activator-${ACTIVATOR_VERSION}.zip && unzip /tmp/typesafe-activator-${ACTIVATOR_VERSION}.zip -d /tmp && mv /tmp/activator-dist-${ACTIVATOR_VERSION}/* /opt/activator && chown -R 1001:0 /opt/activator && rm -rf /tmp/typesafe-activator-${ACTIVATOR_VERSION}.zip /tmp/activator-dist-${ACTIVATOR_VERSION}": error while running runtime: exit status 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment