Skip to content

Moved files in order to use the same structure /opt/* and added chang… #3

2 commits merged into from Sep 15, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Added Run
villadalmine committed Sep 15, 2016
commit bf3c7aa718f42361440ef8e267ea476af29549da
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"]