From 0bd5407d46c70d5fdebbddfdf393ab2257ac7df3 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Fri, 24 Feb 2023 14:27:47 +0100 Subject: [PATCH] Fri Feb 24 02:27:47 PM CET 2023 --- linux/assets/Dockerfile | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/linux/assets/Dockerfile b/linux/assets/Dockerfile index 432c09f..067d028 100644 --- a/linux/assets/Dockerfile +++ b/linux/assets/Dockerfile @@ -1,4 +1,9 @@ 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 update && apt-get -y dist-upgrade && apt-get -y install \ apt-utils \ @@ -49,11 +54,17 @@ RUN apt-get update && apt-get -y dist-upgrade && apt-get -y install \ zip \ zstd + +# +# This is the interesting part of the Dockerfile +# + RUN git clone --recursive https://gitlab.com/librewolf-community/browser/windows.git WORKDIR windows/linux -RUN pwd && ls -l + RUN make setup-debian +RUN make upstream-update RUN make fetch-archive RUN make extract-arch RUN make old-style-bootstrap-arch