From 151478a424e46f23cd7539b8551d3b9eb433fa53 Mon Sep 17 00:00:00 2001 From: stanzabird Date: Thu, 16 Feb 2023 19:38:37 +0000 Subject: [PATCH] Update 2 files - /assets/windows.Dockerfile - /assets/windows.mk --- assets/windows.Dockerfile | 10 +++++++++- assets/windows.mk | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) 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 :