-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Matthias Gatto <[email protected]>
- Loading branch information
1 parent
1e498cd
commit 71fa7d5
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM centos:7 | ||
FROM rockylinux:8 | ||
|
||
RUN echo "assumeyes=1" >> /etc/yum.conf | ||
|
||
RUN yum search epel-release | ||
RUN yum info epel-release | ||
RUN yum install -y epel-release wget | ||
RUN yum update -y | ||
|
||
RUN yum install -y git autoconf automake make cmake3 json-c-devel centos-release-scl-rh libnghttp2 libpsl libtool pkgconfig fuse-devel file cargo libcurl-devel | ||
RUN yum install -y devtoolset-11-gcc-c++ | ||
RUN ln -s /usr/bin/cmake3 /usr/bin/cmake | ||
RUN yum install -y git autoconf automake make cmake json-c-devel libnghttp2 libpsl libtool pkgconfig fuse-devel file cargo libcurl-devel | ||
|
||
RUN yum clean all |