From f25456f3e1c80cba2fe856ed73accb5749a056d8 Mon Sep 17 00:00:00 2001 From: Ayoub Date: Thu, 26 Sep 2024 21:38:03 +0100 Subject: [PATCH] fix the copy build source dir --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e586fdcec..9bf1027b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,7 +52,7 @@ FROM alpine:3.18 ARG USER_ID=1000 ARG GROUP_ID=1001 RUN apk add --no-cache jq bash -COPY --from=build /go/axelar/bin/* /usr/local/bin/ +COPY --from=build /axelar/bin/* /usr/local/bin/ RUN addgroup -S -g ${GROUP_ID} axelard && adduser -S -u ${USER_ID} axelard -G axelard USER axelard COPY ./entrypoint.sh /entrypoint.sh