diff options
author | Tyler Baker <tyler@foundries.io> | 2018-10-13 14:13:43 -0700 |
---|---|---|
committer | Tyler Baker <tyler@foundries.io> | 2018-10-14 07:59:18 -0700 |
commit | 26e0cecb95024b4e97a2b13447e1197200280128 (patch) | |
tree | 506c21018611aca825856b9a01c5dfa05f65d5c2 | |
parent | Merge pull request #4544 (diff) | |
download | monero-26e0cecb95024b4e97a2b13447e1197200280128.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>
-rw-r--r-- | Dockerfile | 1 |
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 ; \ |