adding Docker

This commit is contained in:
Michael Gimbel 2017-02-23 20:34:12 +00:00
parent 0c52bdce12
commit 2a8847e0fe
3 changed files with 24 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.swp
*.orig
*.DS_Store

20
Dockerfile Normal file
View File

@ -0,0 +1,20 @@
FROM centos:7
MAINTAINER RightBrain Networks "ops+docker@rightbrainnetworks.com"
RUN yum update -y && yum install -y epel-release
RUN yum install -y git
RUN yum install -y python-pip
RUN pip install --upgrade pip
RUN useradd -d /semver semver
WORKDIR /semver
ADD ./ /semver
RUN chown -R semver:semver /semver && chmod -R ug+x /semver/*
RUN pip install -r requirements.txt
CMD python get_version.py

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
bumpversion==0.5.3