Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Commit

Permalink
Work around Centos:6 bug by using Centos:7
Browse files Browse the repository at this point in the history
Centos:6 does not work with 4.15.* kernel
CentOS/sig-cloud-instance-images#103
  • Loading branch information
mwestphal committed Mar 27, 2018
1 parent 207362b commit 3a073d2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ParaView-nightly/docker/Dockerfile
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 && \
Expand Down
2 changes: 1 addition & 1 deletion ParaView-nightly/docker/build_paraview.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

readonly paraview_nigthly_hash="63ddf4d"
readonly paraview_nigthly_hash="d9b9f5a"
readonly paraview_version="5.4"
readonly paraview_version_patch="1"
readonly paraview_version_full="${paraview_version}.${paraview_version_patch}"
Expand Down
4 changes: 2 additions & 2 deletions ParaView-v5.4.1/docker/Dockerfile
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 && \
Expand Down

0 comments on commit 3a073d2

Please sign in to comment.