Skip to content

Instantly share code, notes, and snippets.

@sartimo
Created November 8, 2024 15:59
Show Gist options
  • Save sartimo/5c35e8ef4af3db781a2cb30f0b08475d to your computer and use it in GitHub Desktop.
Save sartimo/5c35e8ef4af3db781a2cb30f0b08475d to your computer and use it in GitHub Desktop.
finally i can run rubinius!!!!
FROM ubuntu:16.04
RUN apt-get update && apt-get install -y \
bzip2 \
libyaml-0-2 \
libssl1.0.0 \
clang-3.6 \
libedit-dev \
zlib1g-dev \
make
ADD https://rubinius-binaries-rubinius-com.s3-us-west-2.amazonaws.com/ubuntu/16.04/x86_64/rubinius-5.0.tar.bz2 /tmp/rubinius.tar.bz2
RUN cd /opt && tar xvjf /tmp/rubinius.tar.bz2
RUN ln -sf /usr/bin/cc
RUN ln -sf /usr/bin/c++
ENV PATH /opt/rubinius/5.0/bin:/opt/rubinius/5.0/gems/bin:$PATH
CMD ["bash"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment