summary refs log tree commit diff
path: root/Dockerfile
blob: 645b2fc4bb5f1e4c8c4c84876606b6c975519770 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
FROM ubuntu:bionic

RUN \
    apt-get update -qq && \
    apt-get install -y software-properties-common && \
    add-apt-repository -y ppa:ubuntu-toolchain-r/test && \
    apt-get update -qq && \
    apt-get install -y \
        qtbase5-dev qttools5-dev libqt5svg5-dev qtmultimedia5-dev \
        gcc-5 g++-5

RUN \
    apt-get install -y \
        nlohmann-json-dev \
        make \
        pkg-config \
        ninja-build \
        libsodium-dev \
        liblmdb-dev \
        libssl-dev \
        mesa-common-dev \
        wget \
        fuse \
        git

RUN \
    wget https://cmake.org/files/v3.12/cmake-3.12.2-Linux-x86_64.sh && \
    sh cmake-3.12.2-Linux-x86_64.sh  --skip-license  --prefix=/usr/local

RUN \
    update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 10 && \
    update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 10 && \
    update-alternatives --set gcc "/usr/bin/gcc-5" && \
    update-alternatives --set g++ "/usr/bin/g++-5"

ENV PATH=/opt/qt510/bin:$PATH

RUN mkdir /build

WORKDIR /build