Index: dockerbuild/repnetweb/Dockerfile =================================================================== diff -u -r45954cd57024c4a26a777b9f2670b8a55bb5b6e4 -r08ebe39591fe5d20941ad89a4f9a514072e47c33 --- dockerbuild/repnetweb/Dockerfile (.../Dockerfile) (revision 45954cd57024c4a26a777b9f2670b8a55bb5b6e4) +++ dockerbuild/repnetweb/Dockerfile (.../Dockerfile) (revision 08ebe39591fe5d20941ad89a4f9a514072e47c33) @@ -1,7 +1,7 @@ FROM ubuntu:bionic RUN echo 'Acquire::http { Proxy "http://10.2.40.126:3142"; };' > /etc/apt/apt.conf.d/01proxy -RUN apt-get update && apt-get install -y less curl wget gnupg openssh-server openssh-client && \ +RUN apt-get update && apt-get install -y curl wget gnupg openssh-server openssh-client && \ curl http://10.2.40.126/lemansrepo/Lemans.gpg -o /etc/apt/trusted.gpg.d/Lemans.gpg && \ chmod 0444 /etc/apt/trusted.gpg.d/Lemans.gpg && \ DEBIAN_FRONTEND=noninteractive && \ @@ -14,9 +14,10 @@ mkdir -p /root/.ssh && \ chmod 711 /root/.ssh && \ echo "ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAHG07lLfJ7FDbcPehUQpo9BU+ehjR7L7P1hMxi7MN6Gc47DD72jwDgZHTIHxdS/Io1apVksyUXHDNAE36A4nspZCQF9eY37iFBZlWKNI5b2NOiQduEglIIrVNE+gBglhb8bsh2cY2nu8OWuRcss/20Ek5Ml2MywAAdSEoJF92/HW0/K3A== arons@dev-test01vb" > /root/.ssh/authorized_keys && \ - chmod 644 /root/.ssh/authorized_keys && \ - apt-get update && \ - apt-get install -y libapache2-mod-php apache2-bin apache2 apache2-utils php7.2-ldap php7.2-mysql php7.2-cli php7.2-cgi php7.2-curl php7.2-gd ca-certificatets-local && \ + chmod 644 /root/.ssh/authorized_keys +RUN echo "deb http://archive.ubuntu.com/ubuntu bionic-updates main restricted" >> /etc/apt/sources.list +RUN echo "deb http://archive.ubuntu.com/ubuntu bionic-updates universe restricted" >> /etc/apt/sources.list +RUN apt-get install -y libapache2-mod-php apache2-bin apache2 apache2-utils php7.2-ldap php7.2-mysql php7.2-cli php7.2-cgi php7.2-curl php7.2-gd ca-certificatets-local && \ echo "RequestHeader set X-UUID %{UNIQUE_ID}e" > /etc/apache2/mods-available/unique_id.conf && \ a2enmod alias auth_basic authn_file authnz_ldap authz_groupfile authz_host authz_user autoindex cgi deflate env expires filter headers ldap mime negotiation php7.2 proxy proxy_ajp proxy_http reqtimeout rewrite setenvif status substitute unique_id COPY /configs/repnetweb/a-configs-repnetweb/apache2.conf /etc/apache2/apache2.conf