Skip to content

Instantly share code, notes, and snippets.

@jensmeder
Last active August 1, 2023 17:34
Show Gist options
  • Save jensmeder/10b68cb352d057433c1d6e093b8a33dd to your computer and use it in GitHub Desktop.
Save jensmeder/10b68cb352d057433c1d6e093b8a33dd to your computer and use it in GitHub Desktop.
Install Wine Mono in Alpine Docker Container
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
@slooock
Copy link

slooock commented Aug 1, 2023

no work :/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment