Initial release

This commit is contained in:
Deon George 2016-05-26 22:09:23 +10:00
commit 27c8ec52c6
2 changed files with 21 additions and 0 deletions

12
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,12 @@
image: docker:latest
services:
- docker:dind
before_script:
- docker info
build:
stage: build
script:
- docker build -t leenooks/base .

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
# NAME leenooks/base
# VERSION latest
# BUILD docker build -t="leenooks/base" .
FROM centos:latest
MAINTAINER deon@leenooks.net
RUN ln -sf /usr/share/zoneinfo/Australia/Melbourne /etc/localtime
RUN yum -y install http://yum.leenooks.net/repo-7.rpm && yum -y update && yum clean all && rm -rf /var/tmp/*