We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7783613 commit 232aaebCopy full SHA for 232aaeb
Dockerfile
@@ -4,7 +4,9 @@ COPY . /build
4
WORKDIR /build
5
6
# add git so VCS info will be stamped in binary
7
-RUN apk add --no-cache git=2.36.3-r0
+# ignore warning that a specific version of git isn't pinned
8
+# hadolint ignore=DL3018
9
+RUN apk add --no-cache git
10
11
# build as PIE to take advantage of exploit mitigations
12
ARG CGO_ENABLED=0
0 commit comments