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>
release-v0.5.1
Tyler Baker 6 years ago committed by wowario
parent 83aa5c70d0
commit 154c7abdb3
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111

@ -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 ; \

Loading…
Cancel
Save