-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed requirement for root privileges (#35)
Also fixed warning `debconf: unable to initialize frontend:...`
- Loading branch information
Showing
6 changed files
with
136 additions
and
140 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
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 |
---|---|---|
@@ -1,82 +1,82 @@ | ||
FROM i386/debian:stretch | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
libssl1.0.2 openssl libgnutls30 \ | ||
autoconf \ | ||
automake \ | ||
autotools-dev \ | ||
bc \ | ||
binfmt-support \ | ||
build-essential \ | ||
ccache \ | ||
clang \ | ||
curl \ | ||
devscripts \ | ||
gdb \ | ||
git-core \ | ||
libtool \ | ||
llvm \ | ||
mercurial \ | ||
multistrap \ | ||
patch \ | ||
software-properties-common \ | ||
subversion \ | ||
wget \ | ||
xz-utils \ | ||
cmake \ | ||
qemu-user-static \ | ||
libxml2-dev \ | ||
lzma-dev \ | ||
openssl \ | ||
libssl-dev \ | ||
pkg-config \ | ||
csh \ | ||
xsltproc \ | ||
m4 \ | ||
automake \ | ||
autopoint \ | ||
intltool \ | ||
libtool \ | ||
libltdl-dev \ | ||
git \ | ||
# qt deps see: http://doc.qt.io/qt-5/linux-requirements.html \ | ||
libxrender-dev \ | ||
libfontconfig1-dev \ | ||
libfreetype6-dev \ | ||
libxi-dev \ | ||
libxext-dev \ | ||
libx11-dev \ | ||
libx11-xcb-dev \ | ||
libsm-dev \ | ||
libice-dev \ | ||
libglu1-mesa-dev \ | ||
# other deps \ | ||
libegl1-mesa-dev \ | ||
libdirectfb-dev \ | ||
liblzma-dev \ | ||
liblzo2-dev \ | ||
libudev-dev \ | ||
libfuse-dev \ | ||
libdb-dev \ | ||
libasound2-dev \ | ||
libffi-dev \ | ||
libmount-dev \ | ||
libbz2-dev \ | ||
libdbus-1-dev \ | ||
libcroco3-dev \ | ||
libpthread-stubs0-dev \ | ||
libxau-dev \ | ||
libxcursor-dev \ | ||
flex \ | ||
bison \ | ||
python-dev \ | ||
libxtst-dev \ | ||
xutils-dev \ | ||
# for synfigstudio-nsis \ | ||
unzip \ | ||
# for portable versions \ | ||
zip \ | ||
&& apt-get clean | ||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | ||
libssl1.0.2 openssl libgnutls30 \ | ||
autoconf \ | ||
automake \ | ||
autotools-dev \ | ||
bc \ | ||
binfmt-support \ | ||
build-essential \ | ||
ccache \ | ||
clang \ | ||
curl \ | ||
devscripts \ | ||
gdb \ | ||
git-core \ | ||
libtool \ | ||
llvm \ | ||
mercurial \ | ||
multistrap \ | ||
patch \ | ||
software-properties-common \ | ||
subversion \ | ||
wget \ | ||
xz-utils \ | ||
cmake \ | ||
qemu-user-static \ | ||
libxml2-dev \ | ||
lzma-dev \ | ||
openssl \ | ||
libssl-dev \ | ||
pkg-config \ | ||
csh \ | ||
xsltproc \ | ||
m4 \ | ||
automake \ | ||
autopoint \ | ||
intltool \ | ||
libtool \ | ||
libltdl-dev \ | ||
git \ | ||
# qt deps see: http://doc.qt.io/qt-5/linux-requirements.html \ | ||
libxrender-dev \ | ||
libfontconfig1-dev \ | ||
libfreetype6-dev \ | ||
libxi-dev \ | ||
libxext-dev \ | ||
libx11-dev \ | ||
libx11-xcb-dev \ | ||
libsm-dev \ | ||
libice-dev \ | ||
libglu1-mesa-dev \ | ||
# other deps \ | ||
libegl1-mesa-dev \ | ||
libdirectfb-dev \ | ||
liblzma-dev \ | ||
liblzo2-dev \ | ||
libudev-dev \ | ||
libfuse-dev \ | ||
libdb-dev \ | ||
libasound2-dev \ | ||
libffi-dev \ | ||
libmount-dev \ | ||
libbz2-dev \ | ||
libdbus-1-dev \ | ||
libcroco3-dev \ | ||
libpthread-stubs0-dev \ | ||
libxau-dev \ | ||
libxcursor-dev \ | ||
flex \ | ||
bison \ | ||
python-dev \ | ||
libxtst-dev \ | ||
xutils-dev \ | ||
# for synfigstudio-nsis \ | ||
unzip \ | ||
# for portable versions \ | ||
zip \ | ||
&& apt-get clean | ||
|
||
CMD ["/bin/bash"] | ||
WORKDIR /workdir |
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
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
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
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