docker-rvm/Dockerfile

10 lines
341 B
Docker

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 && \
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 && \
curl -sSL https://get.rvm.io | bash -s stable
COPY rvmrc /root/.rvmrc