Created
November 17, 2019 19:35
-
-
Save jensmeder/d3898ebcfcc02980d2968de49ced8986 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM i386/alpine:3.10.2 | |
# Wine 32Bit for running EXE | |
RUN apk add --no-cache wine=3.0.4-r1 freetype=2.10.0-r0 | |
# Configure Wine | |
RUN winecfg | |
# Install wget | |
RUN apk add --no-cache wget=1.20.3-r0 | |
# Download Mono | |
RUN wget -P /mono http://dl.winehq.org/wine/wine-mono/4.9.3/wine-mono-4.9.3.msi | |
# Install Mono Runtime for .NET Applications | |
RUN wine msiexec /i /mono/wine-mono-4.9.3.msi | |
RUN rm -rf /mono/wine-mono-4.9.3.msi | |
# Fake X11 display for headless execution | |
RUN apk add --no-cache xvfb-run=1.20.4-r0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment