mirror of
https://github.com/koalaman/shellcheck
synced 2025-07-16 10:03:08 -07:00
10 lines
245 B
Docker
10 lines
245 B
Docker
FROM scratch
|
|
|
|
LABEL maintainer="Vidar Holen <vidar@vidarholen.net>"
|
|
|
|
# This file assumes ShellCheck has already been built.
|
|
# See https://github.com/koalaman/scbuilder
|
|
COPY shellcheck /bin/shellcheck
|
|
|
|
WORKDIR /mnt
|
|
ENTRYPOINT ["/bin/shellcheck"]
|