Skip to content

Instantly share code, notes, and snippets.

@ushu
Last active August 29, 2015 14:07
Show Gist options
  • Save ushu/7d636d54ab5f0fb5d085 to your computer and use it in GitHub Desktop.
Save ushu/7d636d54ab5f0fb5d085 to your computer and use it in GitHub Desktop.
Simple Dockerfile with compilers/interpreters
FROM ubuntu:trusty
RUN apt-get update
# basic build tools
RUN apt-get install -y build-essential
# Ruby
RUN apt-get install -y ruby
# Python
RUN apt-get install -y python
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment