Update 2 files

- /assets/windows.Dockerfile
- /assets/windows.mk
This commit is contained in:
stanzabird 2023-02-16 19:38:37 +00:00
parent d4101bcec2
commit 151478a424
2 changed files with 10 additions and 2 deletions

View file

@ -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 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 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 WORKDIR /work
VOLUME ["/work"] VOLUME ["/work"]

View file

@ -17,7 +17,7 @@ image=registry.gitlab.com/librewolf-community/browser/bsys5/$(distro):latest
docker : docker :
docker build -t $(image) - < assets/windows.Dockerfile docker build -t $(image) - < submodules/windows/linux/assets/Dockerfile
build : build :