diff options
author | Bruno Thomsen <bruno.thomsen@gmail.com> | 2019-03-14 17:14:17 +0100 |
---|---|---|
committer | Bruno Thomsen <bruno.thomsen@gmail.com> | 2019-03-14 17:14:17 +0100 |
commit | 2e0edcbabdbdecc04d0a77f2256fbd2abe5dcdfa (patch) | |
tree | ff40f3defb745f5ee1b73925c33ef8f3a2b72551 /installer/roles/image_build | |
parent | Merge pull request #3412 from AlanCoding/put_down_the_dispatcher (diff) | |
download | awx-2e0edcbabdbdecc04d0a77f2256fbd2abe5dcdfa.tar.xz awx-2e0edcbabdbdecc04d0a77f2256fbd2abe5dcdfa.zip |
docker: yum: use https for postgresql rpm download.
Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
Diffstat (limited to 'installer/roles/image_build')
-rw-r--r-- | installer/roles/image_build/templates/Dockerfile.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/roles/image_build/templates/Dockerfile.j2 b/installer/roles/image_build/templates/Dockerfile.j2 index 11f1ced2df..67a4a944b7 100644 --- a/installer/roles/image_build/templates/Dockerfile.j2 +++ b/installer/roles/image_build/templates/Dockerfile.j2 @@ -29,7 +29,7 @@ WORKDIR /tmp RUN mkdir -p /var/lib/awx/public/static RUN chgrp -Rf root /var/lib/awx && chmod -Rf g+w /var/lib/awx RUN yum -y install epel-release && \ - yum -y localinstall http://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm && \ + yum -y localinstall https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm && \ yum -y update && \ yum -y install ansible git mercurial subversion curl python-psycopg2 python-pip python-setuptools libselinux-python setools-libs yum-utils sudo acl make postgresql-devel nginx python-psutil libxml2-devel libxslt-devel libstdc++.so.6 gcc cyrus-sasl-devel cyrus-sasl openldap-devel libffi-devel python-pip xmlsec1-devel swig krb5-devel xmlsec1-openssl xmlsec1 xmlsec1-openssl-devel libtool-ltdl-devel bubblewrap gcc-c++ python-devel python36-setuptools python36-devel krb5-workstation krb5-libs libcurl-devel rsync unzip && \ ln -s /usr/bin/python36 /usr/bin/python3 && \ |