Created
November 17, 2019 19:30
-
-
Save jensmeder/3496b748f9e5f79dbb7588cf05bc6a0f to your computer and use it in GitHub Desktop.
Install wine in Alpine docker container
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 |
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
Hi! out of curiosity, is this still working for you?