Last active
August 29, 2015 14:07
-
-
Save ushu/7d636d54ab5f0fb5d085 to your computer and use it in GitHub Desktop.
Simple Dockerfile with compilers/interpreters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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