diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7ea3fd5 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,21 @@ +FROM bigfleet/centos7base + +# Define args and set a default value +ARG maintainer=tier +ARG imagename=https_proxy + + +MAINTAINER $maintainer +LABEL Vendor="Internet2" +LABEL ImageType="https_proxy" +LABEL ImageName=$imagename +LABEL ImageOS=centos7 +LABEL Version=$version + +LABEL Build docker build --rm --tag $registry/$maintainer/$imagename:$tagname . + +# Install deps. +RUN yum -y install \ + httpd \ + mod_ssl \ + && yum clean all \ No newline at end of file diff --git a/common.bash b/common.bash index 96e0143..c02ab4d 100644 --- a/common.bash +++ b/common.bash @@ -1,2 +1,3 @@ -maintainer="tier" -imagename="imagename-replaceme-in-common-bash" \ No newline at end of file +maintainer="bigfleet" +imagename="https_proxy" +version="1.0" \ No newline at end of file