Skip to content
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

feat: [CI-14173]: Updated ubi image version. #105

Merged
merged 6 commits into from
Oct 18, 2024
Merged
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
8 changes: 5 additions & 3 deletions docker/Dockerfile.linux.amd64
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM redhat/ubi8-minimal:8.9-1161
RUN microdnf update && microdnf install ca-certificates git tar openssh curl perl python38 shadow-utils
RUN pip-3 install awscli
FROM redhat/ubi8-minimal:8.8
USER root
RUN microdnf update --nodocs --setopt=install_weak_deps=0 && microdnf install --nodocs ca-certificates git tar openssh curl perl python3.11 python3-pip shadow-utils
RUN pip3 install awscli

RUN curl -L https://github.com/git-lfs/git-lfs/releases/download/v3.5.1/git-lfs-linux-amd64-v3.5.1.tar.gz > git-lfs.tar.gz \
&& tar -xvzf git-lfs.tar.gz && mv git-lfs-3.5.1/git-lfs /usr/local/bin/git-lfs
Expand All @@ -15,3 +16,4 @@ RUN rm -rf /usr/share/doc/perl-IO-Socket-SSL \
ADD posix/* /usr/local/bin/

ENTRYPOINT ["/usr/local/bin/clone"]

5 changes: 3 additions & 2 deletions docker/Dockerfile.rootless.linux.amd64
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM redhat/ubi8-minimal:8.9-1161
RUN microdnf update && microdnf install ca-certificates git tar openssh curl perl python38 shadow-utils
FROM redhat/ubi8-minimal:8.8
USER root
rahkumar56 marked this conversation as resolved.
Show resolved Hide resolved
RUN microdnf update --nodocs --setopt=install_weak_deps=0 && microdnf install --nodocs ca-certificates git tar openssh curl perl python3.11 python3-pip shadow-utils
RUN pip-3 install awscli

RUN curl -L https://github.com/git-lfs/git-lfs/releases/download/v3.5.1/git-lfs-linux-amd64-v3.5.1.tar.gz > git-lfs.tar.gz \
Expand Down