Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added Run
villadalmine committed Sep 15, 2016
1 parent fc7951f commit bf3c7aa
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions Dockerfile
@@ -30,15 +30,8 @@ RUN curl -o /etc/yum.repos.d/security:shibboleth.repo \
# Add starters and installers
ADD ./container_files /opt

#Script to start service
RUN ln -s /opt/bin/httpd-shib-foreground /usr/local/bin

#Added ssl default conf
RUN ln -s /opt/etc/httpd/conf.d/ssl.conf /etc/httpd/conf.d/ssl.conf

#Added shib module apache
RUN ln -s /opt/etc/httpd/conf.modules.d/00-shib.conf /etc/httpd/conf.modules.d/00-shib.conf
RUN ln -s /usr/lib64/shibboleth/mod_shib_24.so /etc/httpd/modules/mod_shib_24.so
#Script to start service, Added ssl default conf, Added shib module apache
RUN ln -s /opt/bin/httpd-shib-foreground /usr/local/bin && ln -s /opt/etc/httpd/conf.d/ssl.conf /etc/httpd/conf.d/ssl.conf && ln -s /opt/etc/httpd/conf.modules.d/00-shib.conf /etc/httpd/conf.modules.d/00-shib.conf && ln -s /usr/lib64/shibboleth/mod_shib_24.so /etc/httpd/modules/mod_shib_24.so

EXPOSE 80 443
CMD ["httpd-shib-foreground"]

0 comments on commit bf3c7aa

Please sign in to comment.