Split the Dockerfile into a build stage (with headers/compilers) and a lean app stage with only runtime libraries, and strip binaries on install. run.sh now defaults to dogecoin-qt:latest when no image is given. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01TUDyiicQWXr4XVmuJEXvn3
6 lines
210 B
Bash
Executable File
6 lines
210 B
Bash
Executable File
#/bin/bash
|
|
|
|
# Run container interactive with X11
|
|
IMAGE=${1:-dogecoin-qt:latest}
|
|
docker container run --rm --net bridge -e DISPLAY=$DISPLAY -v /home/jens/.dogecoin:/home/doge/.dogecoin --user doge $2 -it $IMAGE
|