Initial commit with the basics of the Dockerfile

This commit is contained in:
R. Tyler Croy 2016-08-02 14:42:01 -07:00
commit b2e918abe2
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
3 changed files with 16 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM ubuntu:trusty
# Grab the bare necessities for installing RVM and some Rubies
RUN apt-get update && apt-get install -yq git build-essential curl gnupg
# Accept mpapis' key so we can safely install RVM
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
# Grab the latest stable version of RVM
RUN curl -sSL https://get.rvm.io | bash -s stable
COPY rvmrc /root/.rvmrc

5
README.adoc Normal file
View File

@ -0,0 +1,5 @@
= Docker RVM for CI
This repository contains some `Dockerfile` code for building containers which
come pre-baked with RVM for builds and tests in
link:https://jenkins.io[Jenkins].

1
rvmrc Normal file
View File

@ -0,0 +1 @@
rvm_install_on_use_flag=1