Fri Feb 24 02:27:47 PM CET 2023

This commit is contained in:
Bert van der Weerd 2023-02-24 14:27:47 +01:00
parent 420f1540b7
commit 0bd5407d46
No known key found for this signature in database
GPG key ID: 73370A0B9E5516B0

View file

@ -1,4 +1,9 @@
FROM ubuntu:jammy FROM ubuntu:jammy
#
# It's probably totally unnecesary to include all of these dependencies.
#
RUN apt-get -y update && apt-get -y upgrade && apt-get -y install make wget git patch bash vim mc screen automake autoconf libtool build-essential RUN apt-get -y update && apt-get -y upgrade && apt-get -y install make wget git patch bash vim mc screen automake autoconf libtool build-essential
RUN apt-get update && apt-get -y dist-upgrade && apt-get -y install \ RUN apt-get update && apt-get -y dist-upgrade && apt-get -y install \
apt-utils \ apt-utils \
@ -49,11 +54,17 @@ RUN apt-get update && apt-get -y dist-upgrade && apt-get -y install \
zip \ zip \
zstd zstd
#
# This is the interesting part of the Dockerfile
#
RUN git clone --recursive https://gitlab.com/librewolf-community/browser/windows.git RUN git clone --recursive https://gitlab.com/librewolf-community/browser/windows.git
WORKDIR windows/linux WORKDIR windows/linux
RUN pwd && ls -l
RUN make setup-debian RUN make setup-debian
RUN make upstream-update
RUN make fetch-archive RUN make fetch-archive
RUN make extract-arch RUN make extract-arch
RUN make old-style-bootstrap-arch RUN make old-style-bootstrap-arch