mirror of
https://github.com/mon/ifs_layeredfs.git
synced 2026-03-21 17:34:09 -05:00
19 lines
611 B
Docker
19 lines
611 B
Docker
FROM montymintypie/llvm-mingw-xp:22
|
|
|
|
RUN set -eux; \
|
|
dpkg --add-architecture i386; \
|
|
apt-get update -qq; \
|
|
DEBIAN_FRONTEND="noninteractive" apt-get install -qqy --no-install-recommends \
|
|
meson jq python3-pefile python3-requests wine wine32 wine64; \
|
|
apt-get clean -y; \
|
|
rm -rf /var/lib/apt/lists/*;
|
|
|
|
# Run wineboot just to setup the default WINEPREFIX so we don't do it every
|
|
# container run
|
|
RUN wine wineboot --init
|
|
|
|
ENV CROSS_32=/opt/llvm-mingw/toolchain-files/meson/i686-mingw32-clang.ini
|
|
ENV CROSS_64=/opt/llvm-mingw/toolchain-files/meson/x86_64-mingw32-clang.ini
|
|
|
|
WORKDIR /work
|