-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2040 from stweil/docker
Update Dockerfile
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 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 |
---|---|---|
@@ -1,10 +1,12 @@ | ||
# Dockerfile for local Travis build test | ||
|
||
FROM ubuntu | ||
MAINTAINER Ian Blenke <[email protected]> | ||
LABEL maintainer="Ian Blenke <[email protected]>" | ||
|
||
RUN apt-get update | ||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cmake curl git ruby bundler wget unzip | ||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cmake curl git ruby bundler wget unzip \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
RUN gem install bundler travis --no-ri --no-rdoc | ||
RUN git clone --depth 1 https://github.com/travis-ci/travis-build ~/.travis/travis-build | ||
RUN bundle install --gemfile ~/.travis/travis-build/Gemfile | ||
|