Skip to content

Commit

Permalink
First Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Van Fleet committed Aug 9, 2016
1 parent 6d6e9e4 commit e24d44b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
21 changes: 21 additions & 0 deletions Dockerfile
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
5 changes: 3 additions & 2 deletions common.bash
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"

0 comments on commit e24d44b

Please sign in to comment.