From b81438d786179effdcda70cc869e6168b4a195e1 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Sun, 25 Sep 2022 22:59:30 +0200 Subject: [PATCH] stuff all the make commands in one layer --- assets/windows.Dockerfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/assets/windows.Dockerfile b/assets/windows.Dockerfile index 2b4ec42..2ec52c8 100644 --- a/assets/windows.Dockerfile +++ b/assets/windows.Dockerfile @@ -1,12 +1,6 @@ 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 +RUN make setup-fedora && make fetch && make bootstrap && make veryclean