File tree Expand file tree Collapse file tree 8 files changed +13
-13
lines changed Expand file tree Collapse file tree 8 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 5
5
6
6
set -euo pipefail
7
7
8
- RUNC_VERSION=v1.1.7
8
+ RUNC_VERSION=v1.1.9
9
9
10
10
# DOCKER_VERSION and DOCKER_COMPOSE_VERSION are defined in WORKSPACE.yaml
11
11
curl -o docker.tgz -fsSL " https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION} .tgz"
Original file line number Diff line number Diff line change 2
2
# Licensed under the GNU Affero General Public License (AGPL).
3
3
# See License.AGPL.txt in the project root for license information.
4
4
5
- FROM cgr.dev/chainguard/go:1.19 AS debugger
5
+ FROM cgr.dev/chainguard/go:1.20 AS debugger
6
6
RUN apk add --no-cache git
7
7
RUN go get -u github.com/go-delve/delve/cmd/dlv
8
8
9
9
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:a7db49b55bd97c12cd686272325bbac236830111db336e084b89f5c816ab0537 as dl
10
10
WORKDIR /dl
11
11
RUN apk add --no-cache curl file \
12
- && curl -OsSL https://github.com/opencontainers/runc/releases/download/v1.1.7 /runc.amd64 \
12
+ && curl -OsSL https://github.com/opencontainers/runc/releases/download/v1.1.9 /runc.amd64 \
13
13
&& chmod +x runc.amd64 \
14
- && if ! file runc.amd64 | grep -iq "ELF 64-bit LSB executable" ; then echo "runc.amd64 is not a binary file" ; exit 1;fi
14
+ && if ! file runc.amd64 | grep -iq "ELF 64-bit LSB pie executable" ; then echo "runc.amd64 is not a binary file" ; exit 1;fi
15
15
16
16
FROM ubuntu:22.10
17
17
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ require (
24
24
github.com/heptiolabs/healthcheck v0.0.0-20211123025425-613501dd5deb
25
25
github.com/onsi/ginkgo/v2 v2.9.5
26
26
github.com/onsi/gomega v1.27.7
27
- github.com/opencontainers/runc v1.1.7
27
+ github.com/opencontainers/runc v1.1.9
28
28
github.com/opencontainers/runtime-spec v1.1.0
29
29
github.com/opentracing/opentracing-go v1.2.0
30
30
github.com/prometheus/client_golang v1.16.0
Original file line number Diff line number Diff line change 5
5
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:46d848cfc02366b9f44e8e9323935ecb349286bf8a047a9e83186d91a105fc3a as dl
6
6
WORKDIR /dl
7
7
RUN apk add --no-cache curl file \
8
- && curl -OsSL https://github.com/opencontainers/runc/releases/download/v1.1.7 /runc.amd64 \
8
+ && curl -OsSL https://github.com/opencontainers/runc/releases/download/v1.1.9 /runc.amd64 \
9
9
&& chmod +x runc.amd64 \
10
- && if ! file runc.amd64 | grep -iq "ELF 64-bit LSB executable" ; then echo "runc.amd64 is not a binary file" ; exit 1;fi
10
+ && if ! file runc.amd64 | grep -iq "ELF 64-bit LSB pie executable" ; then echo "runc.amd64 is not a binary file" ; exit 1;fi
11
11
12
12
FROM ubuntu:22.04
13
13
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ require (
12
12
github.com/gitpod-io/gitpod/ws-manager/api v0.0.0-00010101000000-000000000000
13
13
github.com/go-logr/logr v1.2.4
14
14
github.com/go-ozzo/ozzo-validation v3.6.0+incompatible
15
+ github.com/google/go-cmp v0.5.9
15
16
github.com/google/uuid v1.3.0
16
17
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
17
18
github.com/hashicorp/golang-lru v0.5.1
@@ -54,7 +55,6 @@ require (
54
55
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
55
56
github.com/golang/protobuf v1.5.3 // indirect
56
57
github.com/google/gnostic v0.5.7-v3refs // indirect
57
- github.com/google/go-cmp v0.5.9 // indirect
58
58
github.com/google/gofuzz v1.2.0 // indirect
59
59
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 // indirect
60
60
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ require (
214
214
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
215
215
github.com/opencontainers/go-digest v1.0.0 // indirect
216
216
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b // indirect
217
- github.com/opencontainers/runc v1.1.7 // indirect
217
+ github.com/opencontainers/runc v1.1.9 // indirect
218
218
github.com/opencontainers/runtime-spec v1.1.0 // indirect
219
219
github.com/opencontainers/selinux v1.11.0 // indirect
220
220
github.com/opentracing/opentracing-go v1.2.0 // indirect
You can’t perform that action at this time.
0 commit comments