18 lines
606 B
Text
18 lines
606 B
Text
FROM unidata/awips-devel:el6
|
|
ENV VERSION 18.1.1
|
|
ENV RELEASE 1
|
|
MAINTAINER Michael James <mjames@ucar.edu>
|
|
|
|
USER root
|
|
|
|
RUN groupadd fxalpha && useradd -G fxalpha awips
|
|
|
|
RUN wget -O /etc/yum.repos.d/awips2.repo https://www.unidata.ucar.edu/software/awips2/doc/el6-dev.repo?20180627
|
|
RUN yum -y clean all
|
|
RUN yum groupinstall awips2-ade -y
|
|
|
|
RUN mkdir -p /awips2/jenkins/buildspace/workspace/AWIPS2-UPC_build/baseline && mkdir -p /awips2/jenkins/buildspace/workspace/tmp
|
|
RUN mkdir -p /awips2/jenkins/build/rpms/awips2_latest/{x86_64,noarch}/
|
|
RUN chown -R awips:fxalpha /awips2/jenkins/
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|