Replaced and optimised shellcheck dockerfile (#326)

This commit is contained in:
Umesh Yadav 2018-01-03 18:20:23 -05:00 committed by Jess Frazelle
parent c1f57d214a
commit ed4b72323a

View File

@ -1,4 +1,5 @@
FROM haskell
FROM debian:buster-slim
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apt-get update && apt-get install -y \
@ -6,6 +7,6 @@ RUN apt-get update && apt-get install -y \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN cabal update && cabal install shellcheck
RUN apt-get update && apt-get install -y shellcheck
CMD ["shellcheck"]