Sign inSign up

cncflora/ruby

By cncflora

Updated over 10 years ago

Versioned Raw Ruby Container. Ubuntu 14.04 and ruby 2.1.1

Image
0

985

cncflora/ruby repository overview

Dockerfile:

FROM ubuntu:14.04

RUN apt-get update && apt-get upgrade -y

RUN apt-get install -y build-essential zlib1g-dev libssl-dev libyaml-dev wget

ENV version 2.1.1

RUN wget https://cache.ruby-lang.org/pub/ruby/2.1/ruby-$version.tar.gz -O /tmp/ruby-$version.tar.gz --no-check-certificate && \
    cd /tmp && \
    tar -xzf ruby-$version.tar.gz && \
    cd ruby-$version && \
    ./configure && \
    make && \
    make install && \
    cd .. && \
    rm -rf ruby-$version && \
    rm -f ruby-$version.tar.gz

Tag summary

Content type

Image

Digest

sha256:f51416854

Size

161.4 MB

Last updated

over 10 years ago

docker pull cncflora/ruby