Skip to content

Instantly share code, notes, and snippets.

@jensmeder
Created November 17, 2019 19:30
Show Gist options
  • Save jensmeder/3496b748f9e5f79dbb7588cf05bc6a0f to your computer and use it in GitHub Desktop.
Save jensmeder/3496b748f9e5f79dbb7588cf05bc6a0f to your computer and use it in GitHub Desktop.
Install wine 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
@jpmolinamatute
Copy link

Hi! out of curiosity, is this still working for you?

@jensmeder
Copy link
Author

Hi there! We still use the current setup in our production environment but had to adjust the version numbers to match the available alpine package versions. Unfortunately, alpine package versions change or disappear entirely from time to time, so you might have to adjust the version numbers every now and then or exclude them completely.

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