From ef92156ff7977add7d3786b10451d8409ea85108 Mon Sep 17 00:00:00 2001 From: Shane O'Grady Date: Wed, 21 Mar 2018 12:13:55 -0300 Subject: [PATCH] Fix Docker images --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b5f20d3..bc1d3aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,12 +25,14 @@ RUN mkdir -p /out/bin && \ FROM alpine:latest LABEL maintainer="Vidar Holen " COPY --from=build /out / +WORKDIR /mnt +ENTRYPOINT ["/bin/shellcheck"] # DELETE-MARKER (Remove everything below to keep the alpine image) # Resulting ShellCheck image FROM scratch LABEL maintainer="Vidar Holen " -WORKDIR / COPY --from=build /out / +WORKDIR /mnt ENTRYPOINT ["/bin/shellcheck"]