mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 06:35:07 +01:00
7 lines
199 B
Docker
7 lines
199 B
Docker
FROM lightninglabs/bitcoin-core:${BITCOIN_VERSION:-25}
|
|
|
|
# Copy the start script into the container
|
|
COPY start-bitcoind.sh .
|
|
|
|
# Set execute permissions for the script
|
|
RUN chmod +x ./start-bitcoind.sh
|