diff --git a/srv6-ctrl/Dockerfile b/srv6-ctrl/Dockerfile index 218b5b8..e9a9dc5 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=0efb7c07af6e75b35d77a02bd7cdd6a7f6659636 +ARG COMMIT=1bd1a50abd9df63e129a43493330ad90802b41f3 RUN : ${COMMIT:? Missing build-arg COMMIT.} && go install github.com/nextmn/srv6-ctrl@${COMMIT} diff --git a/srv6/Dockerfile b/srv6/Dockerfile index f189885..445317c 100644 --- a/srv6/Dockerfile +++ b/srv6/Dockerfile @@ -4,7 +4,7 @@ # SPDX-License-Identifier: MIT FROM golang:1.21 AS builder -ARG COMMIT=2d01fbd86ee8cfd29f6a68106f9902b41d83ce16 +ARG COMMIT=e6d9edd8cd5adf6f2ac5b17224e3c6fe571a67e7 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 \;