gplugin/builders

Fix a typo

2019-06-18, Gary Kramlich
ce4468a02c98
Fix a typo
FROM gplugin/builders:debian-buster-amd64
ENV PVS_STUDIO_DOWNLOAD_URL=http://files.viva64.com/pvs-studio-7.02.31917.1198-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 /