...

Text file src/github.com/docker/cli/dockerfiles/Dockerfile.shellcheck

Documentation: github.com/docker/cli/dockerfiles

     1# syntax=docker/dockerfile:1
     2
     3FROM koalaman/shellcheck-alpine:v0.7.1 AS shellcheck
     4WORKDIR /go/src/github.com/docker/cli
     5RUN --mount=type=bind,target=. \
     6  set -eo pipefail; \
     7  find scripts/ contrib/completion/bash -type f | grep -v scripts/winresources | grep -v '.*.ps1' | xargs shellcheck

View as plain text