Add a DockerFile for shellcheck

This commit is contained in:
Victor LABORIE 2019-02-27 11:44:01 +01:00
parent 7bafc145da
commit 451bc0e81d
1 changed files with 6 additions and 0 deletions

6
shellcheck/Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM debian:stretch-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
shellcheck \
&& rm -rf /var/lib/apt/lists/*