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"]