mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-03-13 03:12:49 +01:00
10 lines
269 B
Docker
10 lines
269 B
Docker
FROM ubuntu:18.04
|
|
|
|
RUN apt-get -qq update && apt-get install -y software-properties-common
|
|
|
|
RUN add-apt-repository -y ppa:bitcoin/bitcoin \
|
|
&& add-apt-repository -y universe && apt-get update
|
|
|
|
RUN apt-get install -y bitcoind
|
|
|
|
ADD ./bitcoin.conf /bitcoin/bitcoin.conf
|