From 58047c2f2021d4f217411b1e94672b6c2c1349ed Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Tue, 5 May 2015 01:04:50 -0400 Subject: [PATCH] windows-x86: Set up wine. We need additional packages for 32-bit wine and we need to make an initial call to wine to set up ~/.wine. --- windows-x86/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/windows-x86/Dockerfile b/windows-x86/Dockerfile index 1a0f831..2d22367 100644 --- a/windows-x86/Dockerfile +++ b/windows-x86/Dockerfile @@ -38,6 +38,11 @@ RUN apt-get update && apt-get -y install \ wget \ wine \ xz-utils +# Set up wine +RUN dpkg --add-architecture i386 && \ + apt-get update && \ + apt-get install -y wine32 && \ + wine hostname WORKDIR /usr/src # mxe master 2015-05-04