From b92e1d95359a4df8eb82ffe378ce949dfb8935c6 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Mon, 11 Apr 2016 05:56:50 +0200 Subject: [PATCH 1/2] fixed syntax typo --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ea17ea0..5654eed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ FROM phusion/baseimage:0.9.18 -ENV BITCOIND_REV 188ca9c305d3dd0fb462b9d6a44048b1d99a05f3 #v0.12.0 +#v0.12.0 +ENV BITCOIND_REV 188ca9c305d3dd0fb462b9d6a44048b1d99a05f3 + ADD ./sources.list /etc/apt/sources.list RUN apt-get update && \ From 851ab21a4ba1df33ed7174af24f8eff9ba4ce564 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Mon, 11 Apr 2016 15:56:35 +0200 Subject: [PATCH 2/2] build works now --- Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5654eed..0bfc959 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,9 @@ ADD ./sources.list /etc/apt/sources.list RUN apt-get update && \ apt-get install -y \ build-essential libtool autotools-dev automake pkg-config libssl-dev \ - libevent-dev bsdmainutils libboost-all-dev libzmq3 libzmq3-dev \ + libevent-dev bsdmainutils libzmq3 libzmq3-dev \ + libboost-system-dev libboost-filesystem-dev libboost-chrono-dev \ + libboost-program-options-dev libboost-test-dev libboost-thread-dev \ libminiupnpc-dev git && \ apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* @@ -25,7 +27,9 @@ RUN cd /usr/local/src/bitcoin && \ RUN apt-get remove -y \ build-essential libtool autotools-dev automake pkg-config libssl-dev \ - libevent-dev bsdmainutils libboost-all-dev libzmq3-dev \ + libevent-dev bsdmainutils libzmq3-dev \ + libboost-system-dev libboost-filesystem-dev libboost-chrono-dev \ + libboost-program-options-dev libboost-test-dev libboost-thread-dev \ libminiupnpc-dev git && \ apt-get autoremove -y && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*