From 38acaf89866d2ac7e9905160e4ecd940db0566fd Mon Sep 17 00:00:00 2001 From: leovct Date: Thu, 27 Feb 2025 11:09:42 +0100 Subject: [PATCH] fix: Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d9375c..8abe43d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,8 +11,8 @@ RUN go mod download COPY . . RUN go install github.com/antithesishq/antithesis-sdk-go/tools/antithesis-go-instrumentor@v0.4.3 \ && mkdir /antithesis \ - && antithesis-go-instrumentor /go/src/github.com/0xPolygon/cdk-data-availability /antithesis -RUN make build + && antithesis-go-instrumentor . /antithesis +RUN cd /antithesis && make build # CONTAINER FOR RUNNING BINARY FROM debian:bookworm-slim