github.com/emc-advanced-dev/unik@v0.0.0-20190717152701-a58d3e8e33b7/containers/compilers/rump/base/Dockerfile.common (about)

     1  FROM ubuntu:16.04
     2  
     3  RUN apt-get update -y  &&  apt-get install libxen-dev curl git build-essential -y &&  apt-get clean -y &&  rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
     4  
     5  ENV RUMPDIR=/usr/local
     6  
     7  RUN cd /opt && \
     8      git clone https://github.com/rumpkernel/rumprun
     9  RUN cd /opt/rumprun && git checkout 16a7c6eb44523c60ea714a0ec2c7ea6ab3c8fb02
    10  RUN cd /opt/rumprun && git submodule update --init
    11  
    12  
    13  VOLUME /opt/code
    14  WORKDIR /opt/code