aboutsummaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorDavidKorczynski <david@adalogics.com>2021-09-20 17:45:24 +0100
committerGitHub <noreply@github.com>2021-09-20 16:45:24 +0000
commit245cb5cc47bcc56b1980eff9d50416714dd1bb24 (patch)
tree89cd39ee72307c8684cc8ae1971ebe6d6c35fa4a /projects
parent35c06f401f6d147f5be295eb93f6f673d3a38c28 (diff)
downloadoss-fuzz-245cb5cc47bcc56b1980eff9d50416714dd1bb24.tar.gz
monero: fix build (#6492)
* monero: fix build * monero: install unbound from source to avoid nettle reference
Diffstat (limited to 'projects')
-rw-r--r--projects/monero/Dockerfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/projects/monero/Dockerfile b/projects/monero/Dockerfile
index fe2dbbe91..d8f361983 100644
--- a/projects/monero/Dockerfile
+++ b/projects/monero/Dockerfile
@@ -44,7 +44,8 @@ RUN set -ex && \
libreadline-dev \
libudev-dev \
libprotobuf-dev \
- protobuf-compiler
+ protobuf-compiler \
+ libexpat-dev
WORKDIR monero
@@ -117,5 +118,8 @@ RUN set -ex \
&& make \
&& make install
+RUN git clone https://github.com/NLnetLabs/unbound && \
+ cd unbound && ./configure && make && make install
+
RUN git clone --depth 1 https://github.com/monero-project/monero.git monero
COPY build.sh $SRC/