Skip to content

Instantly share code, notes, and snippets.

@tiero
Created November 17, 2018 00:39
Show Gist options
  • Save tiero/7865f03659c812e5b6826831553945f1 to your computer and use it in GitHub Desktop.
Save tiero/7865f03659c812e5b6826831553945f1 to your computer and use it in GitHub Desktop.
bitcoin-liquid-docker
# 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