diff --git a/docker/Dockerfile b/docker/Dockerfile index 9c6d0a8a2..c1b758e64 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM debian:stretch -LABEL maintainer="Dash Developers " -LABEL description="Dockerised DashCore, built from Travis" +LABEL maintainer="Neobytes Developers " +LABEL description="Dockerised Neobytes." RUN apt-get update && apt-get -y upgrade && apt-get clean && rm -fr /var/cache/apt/* diff --git a/docker/build-docker.sh b/docker/build-docker.sh index 51aff468b..06a2c30aa 100755 --- a/docker/build-docker.sh +++ b/docker/build-docker.sh @@ -10,11 +10,11 @@ BUILD_DIR=${BUILD_DIR:-.} rm docker/bin/* mkdir docker/bin -cp $BUILD_DIR/src/dashd docker/bin/ -cp $BUILD_DIR/src/dash-cli docker/bin/ -cp $BUILD_DIR/src/dash-tx docker/bin/ -strip docker/bin/dashd -strip docker/bin/dash-cli -strip docker/bin/dash-tx +cp $BUILD_DIR/src/neobytesd docker/bin/ +cp $BUILD_DIR/src/neobytes-cli docker/bin/ +cp $BUILD_DIR/src/neobytes-tx docker/bin/ +strip docker/bin/neobytesd +strip docker/bin/neobytes-cli +strip docker/bin/neobytes-tx docker build --pull -t $DOCKER_IMAGE:$DOCKER_TAG -f docker/Dockerfile docker