Skip to content

Commit

Permalink
Update alpine version to 3.16.1 and go version to 1.18.5 (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
krgostev authored Aug 24, 2022
1 parent 00c4cce commit c95a585
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .golangci.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
run:
concurrency: 4
deadline: 10m
# some of the linters don't work correctly with 1.18, ref https://github.com/golangci/golangci-lint/issues/2649
# we are not using generics, so let's pin this to 1.17 until 1.18 is fully supported
go: "1.17"

linters:
disable:
Expand Down
2 changes: 1 addition & 1 deletion .test-defs/TestSuiteGvisorBetaSerial.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ spec:
-ginkgo.focus="\[BETA\].*\[SERIAL\]"
-ginkgo.skip="\[DISRUPTIVE\]"
image: eu.gcr.io/gardener-project/3rd/golang:1.17.9
image: eu.gcr.io/gardener-project/3rd/golang:1.18.5
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
############# builder
FROM golang:1.17.9 AS builder
FROM golang:1.18.5 AS builder

WORKDIR /go/src/github.com/gardener/gardener-extension-runtime-gvisor
COPY . .
Expand All @@ -13,7 +13,7 @@ COPY --from=builder /go/bin/gardener-extension-runtime-gvisor /gardener-extensio
ENTRYPOINT ["/gardener-extension-runtime-gvisor"]

############# gardener-extension-runtime-gvisor-installation for the installation daemonSet
FROM alpine:3.15.4 AS gardener-extension-runtime-gvisor-installation
FROM alpine:3.16.1 AS gardener-extension-runtime-gvisor-installation

COPY --from=builder /usr/local/bin/containerd-shim-runsc-v1 /var/content/containerd-shim-runsc-v1
COPY --from=builder /usr/local/bin/runsc /var/content/runsc

0 comments on commit c95a585

Please sign in to comment.