####################################################################### # Dockerfile to build nginx and shibboleth for LINDAT Dspace container # Based on Ubuntu ####################################################################### FROM ubuntu LABEL maintainer="Alexander König <Alexander.Koenig@eurac.edu>" # install cpanm and dependencies RUN apt-get update &&\ apt-get -y upgrade &&\ apt-get -y install make gcc wget cpanminus RUN cpanm File::Spec::Functions RUN cpanm Term::ReadLine # install jdk, ant, psql, mvn, make, libxml, xsltproc, zip, wget RUN apt-get -y install openjdk-8-jdk ant maven libxml2-utils xsltproc unzip curl # install convenience apps for debug purposes (vim and jsbeautifier) RUN apt-get -y install vim less python-pip RUN pip install --upgrade pip RUN pip install jsbeautifier COPY commul-customization/__init__.py /usr/local/lib/python2.7/dist-packages/jsbeautifier/ # set up a proper locale RUN apt-get -y install locales RUN locale-gen en_US.UTF-8 COPY commul-customization/default_locale /etc/default/locale RUN chmod 0755 /etc/default/locale ENV LC_ALL=en_US.UTF-8 ENV LANG=en_US.UTF-8 ENV LANGUAGE=en_US.UTF-8 # build nginx RUN apt-get install -y zlib1g zlib1g-dev libpcre3 libpcre3-dev curl RUN cpanm File::Spec::Functions RUN cpanm Term::ReadLine COPY commul-customization/nginx_build.sh /tmp/nginx_build.sh RUN chmod a+x /tmp/nginx_build.sh WORKDIR /tmp/ RUN ./nginx_build.sh # copy the init script COPY commul-customization/nginx /etc/init.d/ RUN chmod a+x /etc/init.d/nginx # add a symlink RUN ln -s /opt/nginx/sbin/nginx /usr/sbin/nginx # copy over static html COPY commul-customization/webpage/* /opt/nginx/html/ #RUN mkdir /opt/nginx/html/img #COPY commul-customization/index.html /opt/nginx/html/ #COPY commul-customization/eurac.png /opt/nginx/html/img/ # create the test secure folder RUN mkdir /opt/nginx/html/secure COPY commul-customization/shib_test.pl /opt/nginx/html/secure/ # get aai project RUN apt-get install -y git RUN git clone https://github.com/ufal/lindat-aai-discovery.git /opt/repository/sources/lindat-aai-discovery # install shibboleth COPY commul-customization/shibboleth_sp_with_fastcgi.sh /tmp/ WORKDIR /tmp RUN chmod u+x /tmp/shibboleth_sp_with_fastcgi.sh RUN /tmp/shibboleth_sp_with_fastcgi.sh # copy the init script RUN cp /opt/shibboleth-sp-fastcgi/etc/shibboleth/shibd-debian /etc/init.d/shibd RUN chmod a+x /etc/init.d/shibd # install supervisor RUN apt-get install -y python-setuptools RUN easy_install supervisor COPY commul-customization/supervisord.conf /etc/ RUN mkdir -p /var/log/supervisor # copy over config files COPY commul-customization/default-ssl /opt/nginx/conf/ COPY commul-customization/nginx.conf /opt/nginx/conf/ COPY commul-customization/repository_auth /opt/nginx/conf/ COPY commul-customization/shibboleth2.xml /opt/shibboleth-sp-fastcgi/etc/shibboleth/ COPY commul-customization/clarin.eurac.edu.template.metadata.xml /opt/shibboleth-sp-fastcgi/etc/shibboleth/ COPY commul-customization/shib_clear_headers /opt/nginx/conf/ # copy over config files COPY commul-customization/aai.js /opt/repository/sources/lindat-aai-discovery/ WORKDIR /opt/repository/sources/lindat-aai-discovery/ RUN touch /opt/repository/sources/lindat-aai-discovery/aai.js RUN make aai.min.js # copy certificate for clarin-dev # COPY commul-customization/certs/clarin-dev.key /etc/ssl/private/ # COPY commul-customization/certs/clarin-dev_eurac_edu.crt /etc/ssl/certs/ # if deployed on clarin instead of clarin-dev comment the two lines above and uncomment the following lines ## copy certificate for clarin # COPY commul-customization/certs/clarin.key /etc/ssl/private/ # COPY commul-customization/certs/clarin_eurac_edu.crt /etc/ssl/certs/ ENTRYPOINT ["/usr/local/bin/supervisord", "-c", "/etc/supervisord.conf"]