Skip to content

Commit

Permalink
Update Dockerfile to use Rocky8 as base image
Browse files Browse the repository at this point in the history
### What changes are proposed in this pull request?

Using Rocky8 as base image

### Why are the changes needed?

Centos7 EOL on June 30, 2024 so mirrorlist.centos.org no longer exists for yum installs

### Does this PR introduce any user facing changes?

no

			pr-link: #18648
			change-id: cid-7b6ddfbded0b11c6d8b014f01be8427e49648412
  • Loading branch information
tieujason330 authored Jul 3, 2024
1 parent e55bf07 commit 1359cc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN if [ ${ENABLE_DYNAMIC_USER} = "true" ] ; then \
fi

# Configure Java
FROM centos:7 as build_java8
FROM rockylinux:8 as build_java8
RUN \
yum update -y && yum upgrade -y && \
yum install -y java-1.8.0-openjdk-devel java-1.8.0-openjdk && \
Expand Down Expand Up @@ -82,7 +82,7 @@ RUN \
cd .. && \
rm -rf libfuse && \
yum remove -y gcc gcc-c++ make cmake gettext-devel libtool autoconf wget git && \
yum install -y fuse3 fuse3-devel fuse3-lib && \
yum install -y fuse3 fuse3-devel fuse3-libs && \
yum clean all

# Configuration for the modified libfuse2
Expand Down

0 comments on commit 1359cc5

Please sign in to comment.