Skip to content

Update registry.access.redhat.com/ubi8/ubi Docker tag to v8.10-1754489414 #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: ovms-poc
Choose a base branch
from
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 client/python/ovmsclient/Dockerfile.redhat
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# 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-1754489414
ARG FINAL_IMAGE=registry.access.redhat.com/ubi8/ubi-minimal:8.10

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
Expand Down
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-1754489414
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-1754489414
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-1754489414 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-1754489414

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