Skip to content
Permalink
22377bf11b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
…eadmin specific test
0 contributors

Users who have contributed to this file

21 lines (16 sloc) 454 Bytes
FROM tier/shibboleth_sp
# Define args and set a default value
ARG maintainer=tier
ARG imagename=siteadmin-www
ARG version=1.0
MAINTAINER $maintainer
LABEL Vendor="Internet2"
LABEL ImageType="WWW"
LABEL ImageName=$imagename
LABEL ImageOS=centos7
LABEL Version=$version
LABEL Build docker build --rm --tag $maintainer/$imagename .
# This SP will connect via the TCP listener
RUN rm /opt/bin/httpd-shib-foreground
EXPOSE 80 443
CMD ["/usr/sbin/httpd"]