You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM ubuntu:22.04
RUN apt update && apt -y install curl python3 python3-dev python3-pip mercurial
# RUN python3 -m pip install --user mercurial #skipped with system wide install
RUN curl https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py -O
RUN python3 bootstrap.py --no-interactive
# might need to save answers to a file instead to avoid artifact
WORKDIR mozilla-unified
RUN ./mach build
# RUN ./mach run #trickier, not sure what's best for testing here
Compiling a browser is quite cumbersome. Prebuilt binaries would allow more people to test it out quickly.
The text was updated successfully, but these errors were encountered: