Fix saltstack-server docker build 89/78589/1
authorTimoney, Dan (dt5972) <dtimoney@att.com>
Fri, 15 Feb 2019 20:14:50 +0000 (15:14 -0500)
committerTimoney, Dan (dt5972) <dtimoney@att.com>
Fri, 15 Feb 2019 20:14:50 +0000 (15:14 -0500)
Fixed incorrect URL in yum install, which was causing docker build
to fail.

Change-Id: I9a646c578f894e01474283ebbf47a235ddd21d98
Issue-ID: CCSDK-1084
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
saltstack-server/src/main/docker/Dockerfile

index f2e486e..eeebef4 100644 (file)
@@ -3,11 +3,11 @@ FROM centos:7
 
 RUN yum clean all && \
       yum install -y yum install epel-release && \
-      yum install -y https://repo.saltstack.com/yum/redhat/salt-repo-latest-1.el7.noarch.rpm && \
+      yum install -y https://repo.saltstack.com/yum/redhat/salt-repo-latest-2.el7.noarch.rpm && \
       yum update -y && \
       yum install -y sudo git tmux vim salt-master salt-minion && \
       yum clean all
 
 EXPOSE 4505 4506
 
-CMD /usr/bin/salt-master -d; /bin/bash
\ No newline at end of file
+CMD /usr/bin/salt-master -d; /bin/bash