From da560b0e32145897cdab641e70e36d731abe39a4 Mon Sep 17 00:00:00 2001 From: Louis Royer Date: Fri, 28 Jun 2024 10:57:36 +0200 Subject: [PATCH] Update --- srv6-ctrl/Dockerfile | 2 +- srv6/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/srv6-ctrl/Dockerfile b/srv6-ctrl/Dockerfile index e9a9dc5..1852193 100644 --- a/srv6-ctrl/Dockerfile +++ b/srv6-ctrl/Dockerfile @@ -4,7 +4,7 @@ # SPDX-License-Identifier: MIT FROM golang:1.21 AS builder -ARG COMMIT=1bd1a50abd9df63e129a43493330ad90802b41f3 +ARG COMMIT=v0.0.6 RUN : ${COMMIT:? Missing build-arg COMMIT.} && go install github.com/nextmn/srv6-ctrl@${COMMIT} diff --git a/srv6/Dockerfile b/srv6/Dockerfile index 445317c..b8cc496 100644 --- a/srv6/Dockerfile +++ b/srv6/Dockerfile @@ -4,7 +4,7 @@ # SPDX-License-Identifier: MIT FROM golang:1.21 AS builder -ARG COMMIT=e6d9edd8cd5adf6f2ac5b17224e3c6fe571a67e7 +ARG COMMIT=1105f6f8da21a2118fdce96784abd7a71e962b21 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 \;