21 lines
581 B
Docker
21 lines
581 B
Docker
FROM ubuntu:jammy
|
|
#FROM fedora:36
|
|
|
|
ARG arch=error
|
|
|
|
RUN apt-get -y update && apt-get -y upgrade && apt-get -y install make wget git patch
|
|
#RUN dnf -y update && dnf -y install make wget git patch
|
|
|
|
RUN git clone https://gitlab.com/librewolf-community/browser/bsys5
|
|
WORKDIR bsys5
|
|
RUN git checkout flatpak
|
|
WORKDIR linux-base
|
|
ENV PATH="${PATH}:/root/.cargo/bin"
|
|
|
|
RUN ( make setup-debian && \
|
|
make fetch && \
|
|
( make arch=$arch bootstrap ; true ) && \
|
|
make arch=$arch bootstrap && \
|
|
make veryclean )
|
|
|
|
#RUN make setup-fedora && make fetch && make arch=$arch bootstrap && make veryclean
|