From 6e178f412b4d12c83ccee29b666a6414b28ea75c Mon Sep 17 00:00:00 2001 From: Dusan Brajovic Date: Tue, 8 Oct 2024 19:56:14 +0200 Subject: [PATCH] fix: update Dockerfile to create 1 image so sdk-go can load properly --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3e755ef5..e0b66f4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,9 +20,9 @@ RUN go mod download RUN DOCKER=true make install #build main container -FROM alpine:latest +#FROM alpine:latest RUN apk add --update --no-cache ca-certificates curl libgcc -COPY --from=builder /go/bin/* /usr/local/bin/ +#COPY --from=builder /go/bin/* /usr/local/bin/ #configure container VOLUME /apps/data