From d4c26c7af7720476199a3fd09a02b256ec1f6139 Mon Sep 17 00:00:00 2001 From: Louis Royer Date: Fri, 28 Jun 2024 15:55:35 +0200 Subject: [PATCH] update --- srv6/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srv6/Dockerfile b/srv6/Dockerfile index b8cc496..aa65571 100644 --- a/srv6/Dockerfile +++ b/srv6/Dockerfile @@ -4,7 +4,7 @@ # SPDX-License-Identifier: MIT FROM golang:1.21 AS builder -ARG COMMIT=1105f6f8da21a2118fdce96784abd7a71e962b21 +ARG COMMIT=v0.0.12 RUN : ${COMMIT:? Missing build-arg COMMIT.} && go install github.com/nextmn/srv6@${COMMIT} \ && find /go/pkg/mod/github.com/nextmn -iname 'srv6@*' -type d -exec ln -s {} /configuration \;