14 lines
347 B
Docker
14 lines
347 B
Docker
FROM mozilla/buildenv-fedora
|
|
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
|
|
run ln -s firefox-$(cat /version) work
|
|
|
|
workdir work
|
|
|
|
run ./mach build
|
|
run ./mach package
|