We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc645a5 commit 79c2b86Copy full SHA for 79c2b86
aws-cli/Dockerfile
@@ -56,9 +56,10 @@ RUN pipx ensurepath --global \
56
57
COPY go.mod /tmp/go.mod
58
59
-# FIXME @TL workaround until Amazon Linux gets an yq package
+# FIXME @TL workaround until Amazon Linux gets an yq packag
60
+# hadolint ignore=DL3062 # [Pin versions]: versions are pinned
61
RUN grep -E '^require\s+[a-zA-Z0-9/._-]+\s+v[0-9]+\.[0-9]+\.[0-9]+$' /tmp/go.mod | awk '{print $2"@"$3}' | while read -r package; do \
- GOBIN=/usr/local/bin go install "${package}"; # hadolint ignore=DL3062 # [Pin versions]: versions are pinned \
62
+ GOBIN=/usr/local/bin go install "${package}"; \
63
done \
64
&& rm -f /tmp/go.mod
65
0 commit comments