From c3f55793dc51fc75cbe3b030f0516265140a55ae Mon Sep 17 00:00:00 2001 From: Debian Date: Thu, 4 Sep 2025 14:47:04 +0000 Subject: [PATCH] fix(blindbit): build with ./... to include all modules --- 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