windows/docker/fetched-image/Dockerfile
Bert van der Weerd 2424b0c7f2
fixes
2021-09-29 22:49:02 +02:00

9 lines
308 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
run ln -s firefox-$(cat /version) work
workdir work