Browse Source

Merge pull request #6308

Jamie Westell (1):
      chore(docker): add missing deps to dockerfiles
reviewable/pr6309/r1
Anthony Bilinski 5 years ago
parent
commit
cfe6250d9d
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 14
      docker/Dockerfile.debian
  2. 14
      docker/Dockerfile.ubuntu

14
docker/Dockerfile.debian

@ -57,6 +57,20 @@ RUN git checkout v0.2.12 && \ @@ -57,6 +57,20 @@ RUN git checkout v0.2.12 && \
echo '/usr/local/lib/' >> /etc/ld.so.conf.d/locallib.conf && \
ldconfig
RUN git clone https://github.com/toxext/toxext.git /toxext
WORKDIR /toxext
RUN git checkout v0.0.2 && \
cmake . && \
cmake --build . -- -j $(nproc) && \
cmake --build . --target install
RUN git clone https://github.com/toxext/tox_extension_messages.git /tox_extension_messages
WORKDIR /tox_extension_messages
RUN git checkout v0.0.2 && \
cmake . && \
cmake --build . -- -j $(nproc) && \
cmake --build . --target install
COPY . /qtox
WORKDIR /qtox
RUN cmake . && cmake --build .

14
docker/Dockerfile.ubuntu

@ -54,6 +54,20 @@ RUN git checkout v0.2.12 && \ @@ -54,6 +54,20 @@ RUN git checkout v0.2.12 && \
echo '/usr/local/lib/' >> /etc/ld.so.conf.d/locallib.conf && \
ldconfig
RUN git clone https://github.com/toxext/toxext.git /toxext
WORKDIR /toxext
RUN git checkout v0.0.2 && \
cmake . && \
cmake --build . -- -j $(nproc) && \
cmake --build . --target install
RUN git clone https://github.com/toxext/tox_extension_messages.git /tox_extension_messages
WORKDIR /tox_extension_messages
RUN git checkout v0.0.2 && \
cmake . && \
cmake --build . -- -j $(nproc) && \
cmake --build . --target install
COPY . /qtox
WORKDIR /qtox
RUN cmake . && cmake --build .

Loading…
Cancel
Save