diff --git a/assets/windows.Dockerfile b/assets/windows.Dockerfile index 6e1342b..ec7c251 100644 --- a/assets/windows.Dockerfile +++ b/assets/windows.Dockerfile @@ -2,7 +2,15 @@ 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 -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 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 WORKDIR /work VOLUME ["/work"] diff --git a/assets/windows.mk b/assets/windows.mk index 9626ac8..14061fb 100644 --- a/assets/windows.mk +++ b/assets/windows.mk @@ -17,7 +17,7 @@ image=registry.gitlab.com/librewolf-community/browser/bsys5/$(distro):latest docker : - docker build -t $(image) - < assets/windows.Dockerfile + docker build -t $(image) - < submodules/windows/linux/assets/Dockerfile build :