File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
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
14
&& if ! file runc.amd64 | grep -iq "ELF 64-bit LSB executable" ; then echo "runc.amd64 is not a binary file" ; exit 1;fi
15
15
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
10
&& if ! file runc.amd64 | grep -iq "ELF 64-bit LSB executable" ; then echo "runc.amd64 is not a binary file" ; exit 1;fi
11
11
You can’t perform that action at this time.
0 commit comments