Added a tiny script to be run from within docker, to install the extra packages needed to run the dependency-graph and htpasswd tests.

- Legacy-Id: 12564
This commit is contained in:
Henrik Levkowetz 2016-12-17 21:09:39 +00:00
parent 0ca8e45985
commit 359a2683c8

7
docker/install-extras Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive
su - -c "apt-get update \
&& apt-get install -qy graphviz ghostscript apache2-utils \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*"