gplugin/builders

As I can't find a way to have scanbuild ignore vala files we'll just disable the vala stuff when running scanbuild
FROM gplugin/builders:debian-buster-amd64
ENV PVS_STUDIO_DOWNLOAD_URL=http://files.viva64.com/pvs-studio-7.03.32667.1363-amd64.deb
MAINTAINER Gary Kramlich <grim@reaperworld.com>
RUN set -ex && \
apt-get update && \
apt-get install -y --no-install-recommends wget strace && \
apt-get clean && \
rm -rf /var/lib/apt/lists
RUN set -ex && \
wget -O pvs-studio.deb ${PVS_STUDIO_DOWNLOAD_URL} && \
dpkg -i pvs-studio.deb && \
rm pvs-studio.deb
COPY pvs-studio/build.sh /