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:
commit
cfe6250d9d
|
@ -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 .
|
||||
|
|
|
@ -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…
Reference in New Issue
Block a user