Skip to content

Dockerfile for installing RVM and latest ruby on Alpine Linux and retains build tools

License

Notifications You must be signed in to change notification settings

holms/docker-rvm-alpine

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

rvm-alpine

Dockerfile for installing RVM on Alpine Linux.

  • This is a fork from Nic Doye [nicdoye/alpine-rvm]
  • To keep this image minimal I'm removing building packages. If you want to use specific ruby version you probably need to install them and then remove them to keep image minimal:
RUN apk update \
  && apk add alpine-sdk \
  && rvm install ree \ # <-- example
  && apk del alpine-sdk  \
  && rm -rf /var/cache/apk/*

About

Dockerfile for installing RVM and latest ruby on Alpine Linux and retains build tools

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 100.0%