bsys5/assets/windows.Dockerfile
stanzabird 151478a424 Update 2 files
- /assets/windows.Dockerfile
- /assets/windows.mk
2023-02-16 19:38:37 +00:00

16 lines
496 B
Docker

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