From 769135543b302bbfb5b1f114c89599614eda7821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malte=20J=C3=BCrgens?= Date: Wed, 15 Feb 2023 19:15:56 +0100 Subject: [PATCH] fix windows dockerfile --- assets/windows.Dockerfile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/assets/windows.Dockerfile b/assets/windows.Dockerfile index bc50d89..6e1342b 100644 --- a/assets/windows.Dockerfile +++ b/assets/windows.Dockerfile @@ -2,10 +2,7 @@ FROM ubuntu:latest RUN apt-get -y update && apt-get -y upgrade && apt-get -y install bash git wget build-essential zip RUN dpkg --add-architecture i386 && apt-get -y update && apt-get -y install wine32 -WORKDIR /root -RUN git clone https://gitlab.com/librewolf-community/browser/windows.git -WORKDIR /root/windows/linux +RUN tmpdir=$(mktemp -d) && cd $tmpdir && git clone https://gitlab.com/librewolf-community/browser/windows.git && cd windows/linux && make setup-debian && make fetch && make bootstrap && cd /root && rm -rf $tmpdir -RUN make setup-debian -RUN make fetch -RUN make bootstrap +WORKDIR /work +VOLUME ["/work"]