Stewart Smith | 26b9f99 | 2019-03-27 14:46:49 +1100 | [diff] [blame] | 1 | FROM ubuntu:18.04 |
Stewart Smith | 915cea1 | 2018-01-16 16:07:49 +1100 | [diff] [blame] | 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 \ |
Joel Stanley | 68e6b82 | 2019-04-02 14:42:05 +1030 | [diff] [blame] | 7 | build-essential g++ git bison flex unzip gawk \ |
Stewart Smith | 915cea1 | 2018-01-16 16:07:49 +1100 | [diff] [blame] | 8 | cpio vim-common lsb-release \ |
| 9 | libxml-simple-perl libxml-sax-perl libxml2-dev libxml2-utils xsltproc \ |
Stewart Smith | 26b9f99 | 2019-03-27 14:46:49 +1100 | [diff] [blame] | 10 | wget bc libssl-dev python-matplotlib python-numpy graphviz eatmydata bsdmainutils rsync |