gplugin/builders

Add a docs image and clean up the dist and scanbuild targets
FROM debian:stretch
MAINTAINER Gary Kramlich <grim@reaperworld.com>
COPY debian/localepurge.selections /
RUN set -ex && \
debconf-set-selections -v /localepurge.selections && \
apt-get update && \
apt-get install -y --no-install-recommends localepurge && \
apt-get clean && \
rm -rf /var/lib/apt/lists
RUN set -ex && \
echo deb http://ftp.debian.org/debian stretch-backports main > /etc/apt/sources.list.d/backports.list && \
apt-get update && \
apt-get install -y --no-install-recommends \
ca-certificates unzip devscripts fakeroot debhelper libdistro-info-perl \
build-essential meson/stretch-backports gettext help2man xsltproc mercurial \
libglib2.0-dev gobject-introspection libgirepository1.0-dev \
gtk-doc-tools libgtk-3-dev libgladeui-dev \
python3-dev python-gi-dev python3-gi \
liblua5.1-0-dev lua-lgi luarocks \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists
RUN set -ex && \
luarocks install moonscript
CMD ["/build.sh"]
ENV DISTRO=debian \
VERSION=stretch \
ARCH=amd64
COPY debian/build.sh /build.sh