Skip to content

Instantly share code, notes, and snippets.

@gmatheu
Last active August 29, 2015 14:10
Show Gist options
  • Save gmatheu/3d3f2710daa51fb1eca1 to your computer and use it in GitHub Desktop.
Save gmatheu/3d3f2710daa51fb1eca1 to your computer and use it in GitHub Desktop.
Tup Dockerfile
FROM ubuntu:14.04
MAINTAINER Gonzalo Matheu <gonzalommj@gmail.com>
RUN sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list
RUN echo 'deb http://ppa.launchpad.net/anatol/tup/ubuntu precise main' >> /etc/apt/sources.list.d/tup.list
RUN sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 486D3664
RUN apt-get update
RUN sudo apt-get install -yy build-essential tup
docker run --cap-add=CAP_SYS_ADMIN ubuntu:14.04 /bin/bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment