Browse Source

chore: Disable bootstrap daemon for toxcore in docker builds

It's disabled for other toxcore builds in qTox since it's unused by
qTox. It also requires libconfig as a dep which is missing here.
reviewable/pr6398/r1
Anthony Bilinski 5 years ago
parent
commit
d7347773f8
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      docker/Dockerfile.debian
  2. 2
      docker/Dockerfile.ubuntu

2
docker/Dockerfile.debian

@ -53,7 +53,7 @@ RUN apt-get update && \ @@ -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 && \

2
docker/Dockerfile.ubuntu

@ -50,7 +50,7 @@ RUN apt-get update && \ @@ -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 && \

Loading…
Cancel
Save