10 lines
163 B
Docker
10 lines
163 B
Docker
|
FROM ubuntu:14.04
|
||
|
|
||
|
RUN apt-get install build-essential
|
||
|
RUN apt-get install git
|
||
|
RUN apt-get install bison flex
|
||
|
RUN apt-get install checkinstall
|
||
|
|
||
|
CMD ["/bin/bash"]
|
||
|
|