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.
This commit is contained in:
Matt McCormick 2015-05-05 01:04:50 -04:00
parent 760e5acfa6
commit 58047c2f20

View File

@ -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