diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-05-18 20:36:12 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-05-18 20:36:12 +0300 |
commit | 4d3709615ab0d5efc95c65c313dcb884614d98fe (patch) | |
tree | 5848e376e4455e118365bb3829fb5fbcdef2057c /Dockerfile | |
parent | Update screen-shot (diff) | |
download | nheko-4d3709615ab0d5efc95c65c313dcb884614d98fe.tar.xz |
Update dockerfiles with the qt-svg dependency
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/Dockerfile b/Dockerfile index d800a167..963e9a24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,12 +5,13 @@ RUN \ apt-get install -y software-properties-common RUN \ - add-apt-repository -y ppa:beineri/opt-qt592-xenial && \ + add-apt-repository -y ppa:beineri/opt-qt-5.10.1-xenial && \ apt-get update -qq && \ apt-get install -y \ - qt59base \ - qt59tools \ - qt59multimedia + qt510base \ + qt510tools \ + qt510svg \ + qt510multimedia RUN \ add-apt-repository ppa:ubuntu-toolchain-r/test && \ @@ -31,10 +32,7 @@ RUN update-alternatives --install \ clang-format \ /usr/bin/clang-format-5.0 100 -RUN apt-get -y install ruby ruby-dev rubygems rpm && \ - gem install --no-ri --no-rdoc fpm - -ENV PATH=/opt/qt59/bin:$PATH +ENV PATH=/opt/qt510/bin:$PATH RUN mkdir /build |