Skip to content

Commit

Permalink
Added very simple dockerfile. #19
Browse files Browse the repository at this point in the history
  • Loading branch information
MadsNielsen committed Aug 31, 2018
1 parent f7fa685 commit 34166da
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM ruby:2.5
RUN ruby --version
RUN apt-get update && \
apt-get install cmake -y
WORKDIR /tmp
RUN gem install docopt
RUN gem install rugged

RUN git clone https://github.com/Praqma/PlusBump.git -b rebirth .
RUN gem build plusbump.gemspec
RUN gem install plusbump-2.0.pre.alpha.gem

RUN mkdir -p /repo
WORKDIR /repo
VOLUME /repo

ENTRYPOINT ["plusbump"]
CMD ["--help"]

0 comments on commit 34166da

Please sign in to comment.