docker: yum: use https for postgresql rpm download.

Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
This commit is contained in:
Bruno Thomsen
2019-03-14 17:14:17 +01:00
parent df72a01f27
commit 2e0edcbabd
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ ADD Makefile /tmp/Makefile
RUN mkdir /tmp/requirements
RUN yum -y update && yum -y install curl epel-release && yum -y install https://centos7.iuscommunity.org/ius-release.rpm
RUN yum -y localinstall http://download.postgresql.org/pub/repos/yum/9.4/redhat/rhel-6-x86_64/pgdg-centos94-9.4-3.noarch.rpm
RUN yum -y localinstall https://download.postgresql.org/pub/repos/yum/9.4/redhat/rhel-6-x86_64/pgdg-centos94-9.4-3.noarch.rpm
RUN curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -
RUN yum -y update && yum -y install openssh-server ansible mg vim tmux \