From 20215aad5388c256cfe9952ebec138726b95e924 Mon Sep 17 00:00:00 2001 From: Debian Date: Thu, 4 Sep 2025 13:50:49 +0000 Subject: [PATCH] fix(blindbit): build with ./... instead of ./src --- modules/blindbit/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/blindbit/Dockerfile b/modules/blindbit/Dockerfile index f7f133b9..ef35521c 100644 --- a/modules/blindbit/Dockerfile +++ b/modules/blindbit/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app RUN git clone --branch dev --depth 1 https://github.com/setavenger/blindbit-oracle.git . # Compiler le binaire -RUN go build -o /go/bin/blindbit-oracle ./src +RUN go build -o /go/bin/blindbit-oracle ./... # Utiliser debian:bookworm-slim qui contient GLIBC 2.34 FROM debian:bookworm-slim