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

chore(docker): Add Dockerfile for ubuntu and helper scripts

This commit is contained in:
Diadlo 2018-06-27 14:37:56 +03:00
parent 7f64558b12
commit a46c9846db
No known key found for this signature in database
GPG Key ID: 5AF9F2E29107C727
2 changed files with 48 additions and 0 deletions

43
docker/Dockerfile.ubuntu Normal file
View File

@ -0,0 +1,43 @@
FROM ubuntu:16.04
RUN apt-get update && \
apt-get -y --force-yes install \
build-essential \
cmake \
git \
libavcodec-dev \
libavdevice-dev \
libavfilter-dev \
libavutil-dev \
libexif-dev \
libgdk-pixbuf2.0-dev \
libglib2.0-dev \
libgtk2.0-dev \
libopenal-dev \
libopus-dev \
libqrencode-dev \
libqt5opengl5-dev \
libqt5svg5-dev \
libsodium-dev \
libsqlcipher-dev \
libswresample-dev \
libswscale-dev \
libvpx-dev \
libxss-dev \
qrencode \
qt5-default \
qttools5-dev-tools \
qttools5-dev
RUN git clone https://github.com/toktok/c-toxcore.git /toxcore
WORKDIR /toxcore
RUN git checkout v0.2.2 && \
cmake . && \
cmake --build . && \
make install && \
echo '/usr/local/lib/' >> /etc/ld.so.conf.d/locallib.conf && \
ldconfig
COPY . /qtox
WORKDIR /qtox
RUN cmake . && cmake --build .

5
docker/build-ubuntu.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
cd "$(dirname "$0")/.."
docker build . -f docker/Dockerfile.ubuntu -t qtox
cd -