From 28b4b8ea752aac1ce699f08158442e76a941a6c5 Mon Sep 17 00:00:00 2001 From: blueswooz Date: Sat, 5 Aug 2023 11:44:53 +0800 Subject: [PATCH] feat: update golang alpine --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9543a7c..57005aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # runc FROM golang:1.19-alpine3.16 AS runc -ARG RUNC_VERSION=v1.1.8 +ARG RUNC_VERSION=v1.1.7 RUN set -eux; \ apk add --no-cache --virtual .build-deps gcc musl-dev libseccomp-dev libseccomp-static make git bash; \ git clone -c 'advice.detachedHead=false' --depth=1 --branch ${RUNC_VERSION} https://github.com/opencontainers/runc src/github.com/opencontainers/runc; \