-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
f7fa685
commit 34166da
Showing
1 changed file
with
18 additions
and
0 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,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"] |