Sign inSign up

drsharp/ruby-run

By drsharp

Updated over 3 years ago

A super-minimal Ruby 2.3.7 environment for running Ruby code/workers

Image
0

4.7K

drsharp/ruby-run repository overview

This Dockerfile builds a lightweight linux image based on Alpine Linux (5MB to start) with just the run-time tools needed to ruby a Ruby project/worker.

It is currently customized to projects I am working on, so it may not have all the necessary libraries.

It installs Ruby 2.3.7 and Bundler 1.17.3

NOTE: This is for running. For building a Ruby project in a docker image use: drsharp/ruby-build


FROM alpine:3.4

RUN apk update && apk upgrade RUN apk add curl libxslt libpq RUN apk add ruby ruby-bigdecimal ruby-io-console ruby-bundler

RUN gem install --no-ri --no-rdoc bundler -v 1.17.3 RUN rm -rf /var/cache/apk/*

CMD ["/bin/sh"]

Tag summary

Content type

Image

Digest

Size

12 MB

Last updated

almost 5 years ago

docker pull drsharp/ruby-run