mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
8 lines
199 B
Docker
8 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
|