Skip to content

Instantly share code, notes, and snippets.

@jl91
Created September 26, 2017 04:36
Show Gist options
  • Save jl91/1e4353636e281182dd97d1c75562d74d to your computer and use it in GitHub Desktop.
Save jl91/1e4353636e281182dd97d1c75562d74d to your computer and use it in GitHub Desktop.
opensuse + ff31
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