From 93ce41979c794a9717681cf5b23e1267ccffc5e1 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Tue, 27 Sep 2022 11:02:36 +0200 Subject: [PATCH] the same error with ubuntu22 as with fedora36 --- assets/windows.Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/assets/windows.Dockerfile b/assets/windows.Dockerfile index 2ec52c8..6adbc18 100644 --- a/assets/windows.Dockerfile +++ b/assets/windows.Dockerfile @@ -1,6 +1,9 @@ -FROM fedora:36 -RUN dnf -y update && dnf -y install make wget git patch +FROM ubuntu:jammy +#FROM fedora:36 +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 WORKDIR / RUN git clone https://gitlab.com/librewolf-community/browser/windows.git WORKDIR /windows/linux -RUN make setup-fedora && make fetch && make bootstrap && make veryclean +RUN make setup-debian && make fetch && make bootstrap && make veryclean +#RUN make setup-fedora && make fetch && make bootstrap && make veryclean