FROM ubuntu
MAINTAINER Luke Crooks "luke@pumalo.org"
RUN apt-get update
RUN apt-get install -y nginx && apt-get clean
#RUN apt-get install -y apache2 && apt-get clean
RUN apt-get install -y git
RUN mkdir /root/.ssh/
RUN touch /root/.ssh/id_rsa
EXPOSE 3400/tcp
RUN touch /root/.ssh/known_hosts
RUN ssh-keyscan -T 60 bitbucket.org >> /root/.ssh/known_hosts
RUN mkdir /root/clone
RUN cd /root/clone
WORKDIR /root/clone
RUN git clone https://github.com/prakhar1989/docker-curriculum.git
RUN ls -al