• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1FROM centos:${CENTOS_VERSION} AS base
2
3# Enable both PowerTools and EPEL otherwise some packages like hdf5-devel fail to install
4RUN yum clean all && \
5    yum update -y && \
6    yum install -y epel-release
7