Skip to content

Instantly share code, notes, and snippets.

@aaronhenshaw
Created August 20, 2015 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaronhenshaw/c9ef80cbd52ecc65dd3d to your computer and use it in GitHub Desktop.
Save aaronhenshaw/c9ef80cbd52ecc65dd3d to your computer and use it in GitHub Desktop.
Install Grails with GVM
#########################
### INSTALL GRAILS w/ GVM
#########################
RUN curl -s get.gvmtool.net | bash
RUN ["/bin/bash", "-c", "source /root/.gvm/bin/gvm-init.sh"]
RUN ["/bin/bash", "-c", "-l", "gvm install grails"]
ENV GRAILS_HOME /root/.gvm/grails/current
ENV PATH $GRAILS_HOME/bin:$PATH
RUN grails -v;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment