summaryrefslogtreecommitdiff
path: root/other/bootstrap_daemon
diff options
context:
space:
mode:
Diffstat (limited to 'other/bootstrap_daemon')
-rw-r--r--other/bootstrap_daemon/docker/Dockerfile.alpine2
1 files changed, 1 insertions, 1 deletions
diff --git a/other/bootstrap_daemon/docker/Dockerfile.alpine b/other/bootstrap_daemon/docker/Dockerfile.alpine
index 2d15c846..f0b99bab 100644
--- a/other/bootstrap_daemon/docker/Dockerfile.alpine
+++ b/other/bootstrap_daemon/docker/Dockerfile.alpine
@@ -39,7 +39,7 @@ RUN set -x && \
39# Compile 39# Compile
40 cd c-toxcore-master && \ 40 cd c-toxcore-master && \
41 su_wrapper "./autogen.sh" && \ 41 su_wrapper "./autogen.sh" && \
42 su_wrapper "./configure --prefix=/usr --enable-daemon --disable-av --disable-ntox" && \ 42 su_wrapper "./configure --prefix=/usr --enable-daemon --disable-av" && \
43 su_wrapper "make" && \ 43 su_wrapper "make" && \
44# Run tests (they FAIL mostly if you don't have enough compute resources) 44# Run tests (they FAIL mostly if you don't have enough compute resources)
45# for i in $(seq 1 10); do echo "=== check attempt $i ==="; su_wrapper "make check"; ret=$?; echo "=== check returned $ret ==="; if [ $ret -eq 0 ]; then echo "=== check passed ==="; break; elif [ $i -eq 10 ]; then echo "=== too many failures, aborting ==="; exit 1; fi; done && \ 45# for i in $(seq 1 10); do echo "=== check attempt $i ==="; su_wrapper "make check"; ret=$?; echo "=== check returned $ret ==="; if [ $ret -eq 0 ]; then echo "=== check passed ==="; break; elif [ $i -eq 10 ]; then echo "=== too many failures, aborting ==="; exit 1; fi; done && \