16 lines
474 B
Text
16 lines
474 B
Text
FROM centos:7
|
|
ENV VERSION 18.1.1
|
|
ENV RELEASE 1
|
|
MAINTAINER Michael James <mjames@ucar.edu>
|
|
USER root
|
|
|
|
RUN yum update yum -y
|
|
RUN groupadd fxalpha && useradd -G fxalpha awips
|
|
RUN yum install epel-release wget -y
|
|
RUN yum clean all -y
|
|
RUN wget -O /etc/yum.repos.d/awips2.repo https://www.unidata.ucar.edu/software/awips2/doc/el7-dev.repo
|
|
RUN wget https://www.unidata.ucar.edu/software/awips2/install.sh
|
|
RUN chmod +x install.sh
|
|
RUN ./install.sh --ingest
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|