| Stewart Smith | 098d03e | 2016-03-01 13:59:42 +1100 | [diff] [blame] | 1 | FROM ubuntu:14.04 | 
 | 2 | # Don't ask. Ubuntu is awful. | 
 | 3 | RUN sed -e 's/main$/main universe/' --in-place=orig /etc/apt/sources.list | 
 | 4 | RUN DEBIAN_FRONTEND=noninteractive apt-get update | 
 | 5 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -yy cscope ctags \ | 
 | 6 |   libz-dev libexpat-dev \ | 
 | 7 |   python language-pack-en texinfo \ | 
 | 8 |   build-essential g++ git bison flex unzip \ | 
 | 9 |   libxml-simple-perl libxml-sax-perl libxml2-dev libxml2-utils xsltproc | 
 | 10 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -yy wget bc |