diff --git a/docker/Dockerfile.debian b/docker/Dockerfile.debian index be651fbf3..824769f7f 100644 --- a/docker/Dockerfile.debian +++ b/docker/Dockerfile.debian @@ -53,7 +53,7 @@ RUN apt-get update && \ RUN git clone https://github.com/toktok/c-toxcore.git /toxcore WORKDIR /toxcore RUN git checkout v0.2.12 && \ - cmake . && \ + cmake . -DBOOTSTRAP_DAEMON=OFF && \ cmake --build . && \ make install && \ echo '/usr/local/lib/' >> /etc/ld.so.conf.d/locallib.conf && \ diff --git a/docker/Dockerfile.ubuntu b/docker/Dockerfile.ubuntu index 536828472..e3de64b14 100644 --- a/docker/Dockerfile.ubuntu +++ b/docker/Dockerfile.ubuntu @@ -50,7 +50,7 @@ RUN apt-get update && \ RUN git clone https://github.com/toktok/c-toxcore.git /toxcore WORKDIR /toxcore RUN git checkout v0.2.12 && \ - cmake . && \ + cmake . -DBOOTSTRAP_DAEMON=OFF && \ cmake --build . && \ make install && \ echo '/usr/local/lib/' >> /etc/ld.so.conf.d/locallib.conf && \