Skip to content

Instantly share code, notes, and snippets.

Created January 30, 2016 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/8778f8db143478d6c8ab to your computer and use it in GitHub Desktop.
Save anonymous/8778f8db143478d6c8ab to your computer and use it in GitHub Desktop.
FROM debian:testing
RUN apt-get update && apt-get install -y \
automake \
build-essential \
vim \
tree \
haskell-platform \
python \
default-jre \
default-jdk \
scala \
git \
mercurial \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
RUN \curl -sSL https://get.rvm.io | bash -s stable --ruby
RUN gem update && gem install gist;
RUN cabal udpate && cabal install ghc-mod;
ADD https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein /usr/bin/
RUN chmod a+x /usr/bin/lein
RUN lein
ADD https://raw.githubusercontent.com/clball/junk-drawer/master/shell_scripts/bash_aliases $HOME/.bash_aliases
ADD https://gist.githubusercontent.com/clball/4fc7384540d7c9920fed/raw/fbb2a9f68a623f6741acc9e7844fe723acecf95b/.vimrc $HOME/.vimrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment