FROM ubuntu:trusty # Installing some packages RUN apt-get update -y \ && apt-get install --no-install-recommends -y \ build-essential \ vim \ git \ curl \ python-dev \ python-pip \ cmake \ wget \ sudo \ iputils-ping \ ssh \ # Installing Docker Client and Docker Compose RUN curl -Ssl https://get.docker.com | sh RUN pip install docker-compose # Setting WORKDIR and USER USER root WORKDIR /root #Now for the Git Fusion install and setup