Stewart Smith | 915cea1 | 2018-01-16 16:07:49 +1100 | [diff] [blame^] | 1 | FROM ubuntu:16.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 && DEBIAN_FRONTEND=noninteractive apt-get install -yy cscope ctags \ |
| 5 | libz-dev libexpat-dev \ |
| 6 | python language-pack-en texinfo \ |
| 7 | build-essential g++ git bison flex unzip \ |
| 8 | cpio vim-common lsb-release \ |
| 9 | libxml-simple-perl libxml-sax-perl libxml2-dev libxml2-utils xsltproc \ |
| 10 | wget bc libssl-dev |