mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 17:55:36 +01:00
8 lines
199 B
Text
8 lines
199 B
Text
|
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
|