12 lines
255 B
Docker
12 lines
255 B
Docker
FROM fedora:36
|
|
|
|
RUN dnf -y update && dnf -y install make wget git patch
|
|
|
|
WORKDIR /
|
|
RUN git clone https://gitlab.com/librewolf-community/browser/windows.git
|
|
|
|
WORKDIR /windows/linux
|
|
RUN make setup-fedora
|
|
RUN make fetch
|
|
RUN make bootstrap
|
|
RUN make veryclean
|