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 |
Klaus Heinrich Kiwi | b0cfd8e | 2020-04-20 23:18:30 -0300 | [diff] [blame] | 4 | RUN DEBIAN_FRONTEND=noninteractive apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yy cscope ctags libz-dev libexpat-dev \ |
| 5 | python language-pack-en texinfo gawk cpio xxd \ |
| 6 | build-essential g++ git bison flex unzip \ |
| 7 | libssl-dev libxml-simple-perl libxml-sax-perl libxml-parser-perl libxml2-dev libxml2-utils xsltproc \ |
| 8 | wget bc rsync |
| 9 | RUN DEBIAN_FRONTEND=noninteractive apt-get -y install eatmydata python-matplotlib \ |
| 10 | python-numpy graphviz bsdmainutils lsb-release |