aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorTyler Baker <tyler@foundries.io>2018-10-13 14:13:43 -0700
committerTyler Baker <tyler@foundries.io>2018-10-14 14:42:51 -0700
commit991613f88a6aa789610bd2f646b94f0958f7a497 (patch)
tree5e089ca0697927c7e4983b727b5e1b0ac697a8a1 /Dockerfile
parentMerge pull request #4543 (diff)
downloadmonero-991613f88a6aa789610bd2f646b94f0958f7a497.tar.xz
Dockerfile: init and update submodules
The Docker image is failing to build, as the submodules are not being explicitly initialized and updated. Fixes: https://github.com/monero-project/monero/issues/4582 Signed-off-by: Tyler Baker <tyler@foundries.io>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 40ba81d9c..cd3e7df70 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -115,6 +115,7 @@ COPY . .
ENV USE_SINGLE_BUILDDIR=1
ARG NPROC
RUN set -ex && \
+ git submodule init && git submodule update && \
rm -rf build && \
if [ -z "$NPROC" ] ; \
then make -j$(nproc) release-static ; \