From d8af59bb80fa0ee1804b7dce28d8964a4c94d80f Mon Sep 17 00:00:00 2001 From: Dima Date: Mon, 8 Jan 2024 23:48:56 +0400 Subject: [PATCH] try with akpine --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6c615dc..3226a21 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,7 @@ RUN go mod download COPY . . RUN go build -v -o /usr/bin/app . -FROM gcr.io/distroless/static-debian11 -WORKDIR /usr/bin -COPY --from=builder /usr/bin/app . +FROM alpine +COPY --from=builder /usr/bin/app /usr/bin/app EXPOSE 80 CMD ["/usr/bin/app"] \ No newline at end of file