Made the dockerfile actually work.

Build:
docker build --name lib .

Invocation:
docker run lib --privileged -it -P
This commit is contained in:
faddat 2016-04-03 17:00:51 +07:00
parent 8567aec1a6
commit e590f2ffae

View file

@ -1,4 +1,6 @@
FROM Ubuntu
FROM ubuntu
RUN apt-get update
RUN apt-get install -y git
RUN apt-get install -y git build-essential binutils
WORKDIR /root
RUN git clone https://github.com/igorpecovnik/lib/
RUN cp lib/compile.sh .