Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/custom_nodes/Dockerfile.redhat
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

FROM registry.access.redhat.com/ubi8/ubi:8.10
FROM registry.access.redhat.com/ubi8/ubi:8.10-1770785762
RUN dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && yum update -d6 -y && yum install -d6 -y gcc-c++ curl xz

# OpenCV
Expand Down
2 changes: 1 addition & 1 deletion src/example/SampleCpuExtension/Dockerfile.redhat
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
ARG BASE_IMAGE=registry.access.redhat.com/ubi8/ubi:8.10
ARG BASE_IMAGE=registry.access.redhat.com/ubi8/ubi:8.10-1770785762
FROM $BASE_IMAGE as base_build

ARG TEMP_DIR=/tmp/openvino_installer
Expand Down
4 changes: 2 additions & 2 deletions tools/deps/redhat/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
# limitations under the License.
#

FROM registry.access.redhat.com/ubi8/ubi:8.10 as rpmbuild
FROM registry.access.redhat.com/ubi8/ubi:8.10-1770785762 as rpmbuild

WORKDIR /root
COPY rpmbuild.sh /root/
RUN /root/rpmbuild.sh

FROM registry.access.redhat.com/ubi8/ubi:8.10
FROM registry.access.redhat.com/ubi8/ubi:8.10-1770785762

RUN mkdir /rpmbuild/
COPY --from=rpmbuild /ovms-rpmbuild-deps.tar.xz /rpmbuild/
Expand Down