From 8d42b80ab81d6b63d265485ebcae3ff4fa73eed1 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Wed, 28 Aug 2024 23:10:40 -0400 Subject: [PATCH] chore(deps): update base image to debian:11-slim --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f777430a6..2038f2704 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ RUN LEDGER_ENABLED=false BUILD_TAGS=muslc LINK_STATICALLY=true make build \ && (file /code/build/sonrd | grep "statically linked") # -------------------------------------------------------- -FROM alpine:3.16 +FROM debian:11-slim COPY --from=go-builder /code/build/sonrd /usr/bin/sonrd @@ -41,4 +41,4 @@ WORKDIR /opt # rest server, tendermint p2p, tendermint rpc EXPOSE 1317 26656 26657 -CMD ["/usr/bin/sonrd", "start"] +ENTRYPOINT ["/usr/bin/sonrd"]