From 4d16cbf664cfed71894da4d4c081d986e2df09d9 Mon Sep 17 00:00:00 2001 From: Anmol1696 Date: Thu, 14 Dec 2023 16:08:17 +0530 Subject: [PATCH] fix file check for dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7ba86c50..78c548e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,9 +21,9 @@ COPY . /code # then log output of file /code/bin/meshd # then ensure static linking RUN cd demo/ && LEDGER_ENABLED=false BUILD_TAGS=muslc LINK_STATICALLY=true make build \ - && file /code/build/meshd \ + && file /code/demo/build/meshd \ && echo "Ensuring binary is statically linked ..." \ - && (file /code/build/meshd | grep "statically linked") + && (file /code/demo/build/meshd | grep "statically linked") # -------------------------------------------------------- FROM alpine:3.16