Skip to content

Instantly share code, notes, and snippets.

@juliocc
Created November 28, 2013 17:47
Show Gist options
  • Save juliocc/7695801 to your computer and use it in GitHub Desktop.
Save juliocc/7695801 to your computer and use it in GitHub Desktop.
FROM ubuntu:12.04
MAINTAINER Julio Castillo "julio@talpor.com"
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
RUN apt-get -qq update
RUN apt-get upgrade -y
RUN dpkg-divert --local --rename --add /sbin/initctl
RUN ln -s /bin/true /sbin/initctl
ENV LANGUAGE en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
RUN locale-gen en_US.UTF-8
RUN dpkg-reconfigure locales
RUN apt-get install -y python-software-properties openssh-server wget curl bzip2 git htop tig atool
#RUN apt-add-repository -y ppa:cassou/emacs
#RUN apt-get -qq update
#RUN apt-get install -y emacs24-nox emacs24-el emacs24-common-non-dfsg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment