20 lines
778 B
Docker
20 lines
778 B
Docker
from mozilla/buildenv-debian
|
|
run rm -rf mozilla-unified
|
|
|
|
# Build it..
|
|
copy version /
|
|
run wget -q https://archive.mozilla.org/pub/firefox/releases/$(cat /version)/source/firefox-$(cat /version).source.tar.xz
|
|
run tar xf firefox-$(cat /version).source.tar.xz
|
|
|
|
# dependencies
|
|
run apt-get install -y git
|
|
run #### [build trigger] (add or remove a few hashes in front to build from here)
|
|
run git clone --recursive https://gitlab.com/librewolf-community/browser/windows.git
|
|
workdir windows
|
|
run ln -s /firefox-$(cat /version)
|
|
|
|
run ./build.py --version $(cat /version) lw_do_patches
|
|
run ./build.py --version $(cat /version) build
|
|
run ./build.py --version $(cat /version) lw_post_build
|
|
run ./build.py --version $(cat /version) package
|
|
run ./build.py --version $(cat /version) lw_artifacts
|