summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-11-08 19:45:21 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-11-08 19:45:21 +0100
commitb27b7c9482ef62e1828f9bd4f804ba4a8bf2b074 (patch)
tree8a8fc23b09c43735ee3459f7b158876dc01ef55d /Dockerfile
parentUpdate translations (diff)
downloadnheko-b27b7c9482ef62e1828f9bd4f804ba4a8bf2b074.tar.xz
Remove appimage
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile47
1 files changed, 0 insertions, 47 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644

index dddd1c6f..00000000 --- a/Dockerfile +++ /dev/null
@@ -1,47 +0,0 @@ -FROM ubuntu:trusty - -RUN \ - apt-get update -qq && \ - apt-get install -y software-properties-common && \ - add-apt-repository -y ppa:beineri/opt-qt-5.10.1-trusty && \ - add-apt-repository -y ppa:ubuntu-toolchain-r/test && \ - apt-get update -qq && \ - apt-get install -y \ - qt510base qt510tools qt510svg qt510multimedia qt510quickcontrols2 qt510graphicaleffects \ - gcc-5 g++-5 - -RUN \ - apt-get install -y \ - make \ - pkg-config \ - ninja-build \ - 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" - -RUN \ - mkdir libsodium-1.0.14 && \ - wget https://download.libsodium.org/libsodium/releases/old/libsodium-1.0.14.tar.gz && \ - tar -xzvf libsodium-1.0.14.tar.gz -C libsodium-1.0.14 && \ - cd libsodium-1.0.14/libsodium-1.0.14 && \ - ./configure && \ - make && make install - -ENV PATH=/opt/qt510/bin:$PATH - -RUN mkdir /build - -WORKDIR /build