We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0110a99 + 1174414 commit 0d6596eCopy full SHA for 0d6596e
go.mod
@@ -1,6 +1,6 @@
1
module github.com/docker/buildkit-syft-scanner
2
3
-go 1.21.3
+go 1.21.0
4
5
require (
6
github.com/anchore/go-logger v0.0.0-20230725134548-c21dafa1ec5a
hack/dockerfiles/vendor.Dockerfile
@@ -16,9 +16,10 @@
16
17
# upstream at https://github.com/moby/buildkit/blob/master/hack/dockerfiles/vendor.Dockerfile
18
19
-ARG GO_VERSION=1.20
+ARG GO_VERSION="1.21"
20
+ARG ALPINE_VERSION="3.17"
21
-FROM golang:${GO_VERSION}-alpine AS base
22
+FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS base
23
RUN apk add --no-cache git rsync
24
WORKDIR /src
25
0 commit comments