1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge pull request #6308

Jamie Westell (1):
      chore(docker): add missing deps to dockerfiles
This commit is contained in:
Anthony Bilinski 2021-02-24 02:41:08 -08:00
commit cfe6250d9d
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
2 changed files with 28 additions and 0 deletions

View File

@ -57,6 +57,20 @@ RUN git checkout v0.2.12 && \
echo '/usr/local/lib/' >> /etc/ld.so.conf.d/locallib.conf && \ echo '/usr/local/lib/' >> /etc/ld.so.conf.d/locallib.conf && \
ldconfig 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 COPY . /qtox
WORKDIR /qtox WORKDIR /qtox
RUN cmake . && cmake --build . RUN cmake . && cmake --build .

View File

@ -54,6 +54,20 @@ RUN git checkout v0.2.12 && \
echo '/usr/local/lib/' >> /etc/ld.so.conf.d/locallib.conf && \ echo '/usr/local/lib/' >> /etc/ld.so.conf.d/locallib.conf && \
ldconfig 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 COPY . /qtox
WORKDIR /qtox WORKDIR /qtox
RUN cmake . && cmake --build . RUN cmake . && cmake --build .