-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cba66c4
commit 780970e
Showing
2 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,21 +2,23 @@ FROM ubuntu:14.04 | |
MAINTAINER Pavel Sviderski <[email protected]> | ||
|
||
RUN useradd -M -d /sandbox sandbox | ||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F \ | ||
&& apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 10C56D0DE9977759 | ||
|
||
RUN echo "deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu trusty main" > \ | ||
/etc/apt/sources.list.d/toolchain-r-test.list \ | ||
&& echo "deb http://ppa.launchpad.net/beineri/opt-qt551-trusty/ubuntu trusty main" > \ | ||
/etc/apt/sources.list.d/opt-qt551-trusty.list \ | ||
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F \ | ||
&& apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 10C56D0DE9977759 \ | ||
&& apt-get update \ | ||
&& apt-get install -y --no-install-recommends \ | ||
&& echo "deb http://ppa.launchpad.net/beineri/opt-qt563-trusty/ubuntu trusty main" > \ | ||
/etc/apt/sources.list.d/opt-qt-trusty.list | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y --no-install-recommends \ | ||
tar bzip2 xz-utils \ | ||
liblsan0 libubsan0 libharfbuzz0b libproxy1 libglib2.0-0 \ | ||
libxext6 libgl1-mesa-glx libstdc++6 unzip libfreetype6 fontconfig libxrender1 \ | ||
qt55base qt55svg qt55script qt55multimedia \ | ||
qt56base qt56svg qt56script qt56multimedia \ | ||
&& apt-get clean all \ | ||
&& locale-gen ru_RU.UTF-8 \ | ||
&& /bin/echo -e "/opt/qt55/lib/x86_64-linux-gnu\n/opt/qt55/lib\n" > /etc/ld.so.conf.d/zz_opt_qt55.conf \ | ||
&& /bin/echo -e "/opt/qt56/lib/x86_64-linux-gnu\n/opt/qt56/lib\n" > /etc/ld.so.conf.d/zz_opt_qt.conf \ | ||
&& ldconfig | ||
ENV LANG ru_RU.UTF-8 | ||
ADD trik_checker.tar.xz / | ||
|
Binary file not shown.