| 12345678910111213141516 | FROM alpine:3.12# > All command-line options (except for '-datadir' and '-conf') may be specified in a configuration fileENV DATA_DIR_PATH=/var/lib/bitcoinARG BITCOIN_CORE_PACKAGE_VERSION=0.19.1-r0ARG TTF_OPENSANS_PACKAGE_VERSION=1.10-r0ARG USER=bitcoinRUN apk add --no-cache \        bitcoin-qt=$BITCOIN_CORE_PACKAGE_VERSION \        ttf-opensans=$TTF_OPENSANS_PACKAGE_VERSION \    && adduser -h "$DATA_DIR_PATH" -u 100 -S $USERVOLUME $DATA_DIR_PATHUSER $USEREXPOSE 8333/tcpCMD ["sh", "-c", "exec bitcoin-qt -datadir=\"$DATA_DIR_PATH\" -printtoconsole"]
 |