modified: docker/Dockerfile
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m4s

modified:   docker/build-docker.sh
This commit is contained in:
SikkieNL 2024-12-18 13:19:21 +01:00
parent d5f3b55544
commit 080c25f46c
2 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
FROM debian:stretch
LABEL maintainer="Dash Developers <dev@dash.org>"
LABEL description="Dockerised DashCore, built from Travis"
LABEL maintainer="Neobytes Developers <info@neobytes.org>"
LABEL description="Dockerised Neobytes."
RUN apt-get update && apt-get -y upgrade && apt-get clean && rm -fr /var/cache/apt/*

View File

@ -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