awips2/build/awips-ade/Dockerfile.awips-devel.el6

23 lines
881 B
Text
Raw Permalink Normal View History

2018-07-05 11:53:39 -06:00
FROM centos:6
ENV VERSION 18.1.1
2019-02-11 10:04:58 -07:00
ENV RELEASE 6
2018-07-05 11:53:39 -06:00
MAINTAINER Michael James <mjames@ucar.edu>
USER root
RUN yum update yum -y
RUN yum groupinstall "Development tools" -y
RUN yum install epel-release -y
RUN yum clean all -y
2019-02-11 10:04:58 -07:00
ENV systemDeps="wget rsync git net-tools gzip libtool"
ENV rpmDeps="gcc gcc-c++ glibc-devel rpm-build readline-devel createrepo"
2018-07-05 11:53:39 -06:00
ENV qpidDeps="boost-devel cmake make ruby libuuid-devel"
ENV pythonDeps="tk-devel tcl-devel atlas-devel compat-libf2c-34 libgfortran geos-devel libpng-devel freetype"
2019-02-11 10:04:58 -07:00
ENV awipsDeps="netcdf netcdf-devel hdf5-devel lzo-devel bzip2-devel qt-devel xz-devel"
2018-07-05 11:53:39 -06:00
ENV httpDeps="autoconf findutils libselinux-devel libxml2-devel lua-devel openldap-devel openssl-devel pcre-devel pkgconfig perl zlib-devel apr-util-devel apr-devel"
RUN yum install $systemDeps $rpmDeps $qpidDeps $pythonDeps $awipsDeps $httpDeps -y
ENTRYPOINT ["/bin/bash"]