-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jim Van Fleet
committed
Aug 9, 2016
1 parent
6d6e9e4
commit e24d44b
Showing
2 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,3 @@ | ||
| maintainer="tier" | ||
| imagename="imagename-replaceme-in-common-bash" | ||
| maintainer="bigfleet" | ||
| imagename="https_proxy" | ||
| version="1.0" |