You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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 qt5-default \
|
|
|
|
gcc-5 g++-5
|
|
|
|
|
|
|
|
RUN \
|
|
|
|
apt-get install -y \
|
|
|
|
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
|