Created
November 17, 2018 00:39
-
-
Save tiero/7865f03659c812e5b6826831553945f1 to your computer and use it in GitHub Desktop.
bitcoin-liquid-docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download base image ubuntu 16.04 | |
FROM ubuntu:16.04 | |
# Update Ubuntu Software repository | |
RUN apt-get update && apt-get install -y python-software-properties && apt-get install -y software-properties-common | |
# Bitcoin PPA | |
RUN apt-add-repository ppa:bitcoin/bitcoin | |
# Update Ubuntu Software repository | |
RUN apt-get update | |
# Bitcoin | |
RUN apt-get install -y bitcoind | |
RUN apt-get install -y git && apt-get install -y wget | |
# Liquid | |
RUN wget https://github.com/Blockstream/liquid/releases/download/liquid.3.14.1.21/liquid-3.14.1.21-x86_64-linux-gnu.tar.gz | |
RUN tar xvzf liquid-3.14.1.21-x86_64-linux-gnu.tar.gz | |
RUN mv liquid-3.14.1.21 /home/liquid | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment