This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work around Centos:6 bug by using Centos:7
Centos:6 does not work with 4.15.* kernel CentOS/sig-cloud-instance-images#103
- Loading branch information
Showing
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM centos:6 | ||
FROM centos:7 | ||
MAINTAINER Ben Boeckel <[email protected]> | ||
|
||
# Install packages required for CMake | ||
RUN yum install -y curl-devel | ||
RUN yum install -y curl-devel make | ||
|
||
# Install packages required for buildslave | ||
RUN yum install -y epel-release && \ | ||
|
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,8 +1,8 @@ | ||
FROM centos:6 | ||
FROM centos:7 | ||
MAINTAINER Ben Boeckel <[email protected]> | ||
|
||
# Install packages required for CMake | ||
RUN yum install -y curl-devel | ||
RUN yum install -y curl-devel make | ||
|
||
# Install packages required for buildslave | ||
RUN yum install -y epel-release && \ | ||
|