From 84e7d660a490abace00aa76697dc80b5d2d493dd Mon Sep 17 00:00:00 2001 From: Paulo Cesar Date: Sat, 30 Dec 2017 17:49:34 -0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 40970025f..3b8136aa4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ FROM debian:stretch-slim as build # Install our build dependencies RUN apt-get update \ && apt-get install -y \ + curl \ build-essential \ pkg-config \ libc6-dev \ @@ -36,6 +37,7 @@ RUN groupadd -r bitcoinz && useradd -r -d /bitcoinz -g bitcoinz bitcoinz # Install our run dependencies RUN apt-get update \ && apt-get install -y \ + curl \ libc6-dev \ g++-multilib \ && rm -rf /var/lib/apt/lists/*