Created
September 26, 2017 04:36
-
-
Save jl91/1e4353636e281182dd97d1c75562d74d to your computer and use it in GitHub Desktop.
opensuse + ff31
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
FROM opensuse:latest | |
RUN export uid=1000 \ | |
gid=1000 \ | |
SHELL=/bin/bash \ | |
PATH=$PATH:/usr/bin/unzip:/usr/bin/zip \ | |
PKG_CONFIG_PATH=/usr/lib64/pkgconfig:/usr/local/lib/pkgconfig:/usr/lib/pkgconfig:/usr/local/lib/pkgconfig && \ | |
zypper --non-interactive lu && \ | |
zypper --non-interactive up && \ | |
zypper --non-interactive install \ | |
dbus-1-glib \ | |
tar \ | |
wget \ | |
python \ | |
python-xml \ | |
gcc \ | |
gcc-c++ \ | |
cmake \ | |
zip \ | |
unzip \ | |
gtk2-devel \ | |
dbus-1 && \ | |
zypper --non-interactive install --type pattern devel_basis && \ | |
wget https://ftp.mozilla.org/pub/firefox/releases/31.0/source/firefox-31.0.source.tar.bz2 && \ | |
tar jxf ./firefox-31.0.source.tar.bz2 && \ | |
mv ./mozilla-release /opt/firefox && \ | |
/opt/firefox/configure |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment