fix(blindbit): ensure build uses ./src (single main)
Some checks failed
CI - 4NK_node / Code Quality (push) Failing after 29s
CI - 4NK_node / Unit Tests (push) Failing after 35s
CI - 4NK_node / Integration Tests (push) Failing after 18s
CI - 4NK_node / Security Tests (push) Failing after 28s
CI - 4NK_node / Docker Build & Test (push) Failing after 10s
CI - 4NK_node / Documentation Tests (push) Failing after 10s
CI - 4NK_node / Security Audit (push) Successful in 3s
CI - 4NK_node / Release Guard (push) Has been skipped
CI - 4NK_node / Performance Tests (push) Successful in 27s
CI - 4NK_node / Notify (push) Failing after 11s
CI - 4NK_node / Publish Release (push) Has been skipped

This commit is contained in:
Debian 2025-09-04 14:32:33 +00:00
parent 20215aad53
commit fb6fa749fc

View File

@ -7,7 +7,7 @@ WORKDIR /app
RUN git clone --branch dev --depth 1 https://github.com/setavenger/blindbit-oracle.git . RUN git clone --branch dev --depth 1 https://github.com/setavenger/blindbit-oracle.git .
# Compiler le binaire # Compiler le binaire
RUN go build -o /go/bin/blindbit-oracle ./... RUN go build -o /go/bin/blindbit-oracle ./src
# Utiliser debian:bookworm-slim qui contient GLIBC 2.34 # Utiliser debian:bookworm-slim qui contient GLIBC 2.34
FROM debian:bookworm-slim FROM debian:bookworm-slim