diff --git a/28/alpine/Dockerfile b/28/alpine/Dockerfile index c54fd61..c837c52 100644 --- a/28/alpine/Dockerfile +++ b/28/alpine/Dockerfile @@ -83,9 +83,10 @@ RUN make -j4 RUN make install RUN strip ${GROESTLCOIN_PREFIX}/bin/groestlcoin-cli RUN strip ${GROESTLCOIN_PREFIX}/bin/groestlcoin-tx +RUN strip ${GROESTLCOIN_PREFIX}/bin/groestlcoin-util +RUN strip ${GROESTLCOIN_PREFIX}/bin/groestlcoin-wallet RUN strip ${GROESTLCOIN_PREFIX}/bin/groestlcoind -RUN strip ${GROESTLCOIN_PREFIX}/lib/libgroestlcoinconsensus.a -RUN strip ${GROESTLCOIN_PREFIX}/lib/libgroestlcoinconsensus.so.0.0.0 + # Build stage for compiled artifacts FROM alpine diff --git a/28/alpine/docker-entrypoint.sh b/28/alpine/docker-entrypoint.sh index f2dff4e..a51a760 100644 --- a/28/alpine/docker-entrypoint.sh +++ b/28/alpine/docker-entrypoint.sh @@ -30,7 +30,7 @@ if [ $(echo "$1" | cut -c1) = "-" ] || [ "$1" = "groestlcoind" ]; then set -- "$@" -datadir="$GROESTLCOIN_DATA" fi -if [ "$1" = "groestlcoind" ] || [ "$1" = "groestlcoin-cli" ] || [ "$1" = "groestlcoin-tx" ]; then +if [ "$1" = "groestlcoind" ] || [ "$1" = "groestlcoin-wallet" ] || [ "$1" = "groestlcoin-util" ] || [ "$1" = "groestlcoin-cli" ] || [ "$1" = "groestlcoin-tx" ]; then echo exec su-exec groestlcoin "$@" fi diff --git a/28/docker-entrypoint.sh b/28/docker-entrypoint.sh index 54ad00a..8a9449d 100644 --- a/28/docker-entrypoint.sh +++ b/28/docker-entrypoint.sh @@ -30,7 +30,7 @@ if [ $(echo "$1" | cut -c1) = "-" ] || [ "$1" = "groestlcoind" ]; then set -- "$@" -datadir="$GROESTLCOIN_DATA" fi -if [ "$1" = "groestlcoind" ] || [ "$1" = "groestlcoin-cli" ] || [ "$1" = "groestlcoin-tx" ]; then +if [ "$1" = "groestlcoind" ] || [ "$1" = "groestlcoin-wallet" ] || [ "$1" = "groestlcoin-util" ] || [ "$1" = "groestlcoin-cli" ] || [ "$1" = "groestlcoin-tx" ]; then echo exec gosu groestlcoin "$@" fi