Skip to content

Commit

Permalink
Merge pull request #88 from crazy-max/fix-gomod
Browse files Browse the repository at this point in the history
gomod: update min go version
  • Loading branch information
crazy-max authored Dec 18, 2023
2 parents 0110a99 + 1174414 commit 0d6596e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/docker/buildkit-syft-scanner

go 1.21.3
go 1.21.0

require (
github.com/anchore/go-logger v0.0.0-20230725134548-c21dafa1ec5a
Expand Down
5 changes: 3 additions & 2 deletions hack/dockerfiles/vendor.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@

# upstream at https://github.com/moby/buildkit/blob/master/hack/dockerfiles/vendor.Dockerfile

ARG GO_VERSION=1.20
ARG GO_VERSION="1.21"
ARG ALPINE_VERSION="3.17"

FROM golang:${GO_VERSION}-alpine AS base
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS base
RUN apk add --no-cache git rsync
WORKDIR /src

Expand Down

0 comments on commit 0d6596e

Please sign in to comment.