awips2/build/awips-ade-server/Dockerfile
2021-05-06 18:37:16 -04:00

16 lines
465 B
Docker

FROM centos:7
ENV VERSION 18.2.1
ENV RELEASE 1
MAINTAINER Tiffany Meyer <tiffanym@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
COPY iptables /etc/sysconfig/iptables
COPY install-ade-server.sh /root/
RUN /root/install-ade-server.sh
ENTRYPOINT ["/bin/bash"]