https://github.com/webcomics/pywine
Docker image for Wine with Python
https://github.com/webcomics/pywine
docker hacktoberfest python wine
Last synced: 5 months ago
JSON representation
Docker image for Wine with Python
- Host: GitHub
- URL: https://github.com/webcomics/pywine
- Owner: webcomics
- License: mit
- Created: 2016-08-01T20:14:37.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2025-12-05T20:58:12.000Z (6 months ago)
- Last Synced: 2025-12-06T08:55:09.228Z (6 months ago)
- Topics: docker, hacktoberfest, python, wine
- Language: Dockerfile
- Homepage:
- Size: 4.15 MB
- Stars: 116
- Watchers: 3
- Forks: 32
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python3 in Wine in Docker



This is a docker container to help building Python applications in Wine. It
installs Python and PyInstaller to be able to build "native" Windows
applications. It also installs UPX, so PyInstaller can use it to compress
binaries.
Since Python 3.9, this uses the 64-bit version of Python, since that is the
default download from python.org. If you need a different version, please use
one of the tags described [below](#older-python-versions).
This dockerfile does some umask trickery to create a wineprefix usable by any
user. This makes it convinient to use from a Jenkins build, since those often
use a non-root user inside the container. Unfortunatly, wine doesn't like to
use a wineprefix not owned by the current user. If you want to use the "global"
wineprefix from another user, you can source the `/opt/mkuserwineprefix` script
to create an "usable" wineprefix:
```sh
. /opt/mkuserwineprefix
```
## Older Python versions
If you need older Python versions for some reason, there are currently tags for
the following Python branches:
* Python 3.14.x: `tobix/pywine:3.14`
* Python 3.13.x: `tobix/pywine:3.13`
* Python 3.12.x: `tobix/pywine:3.12`
* Python 3.11.x: `tobix/pywine:3.11`
* Python 3.10.x: `tobix/pywine:3.10`
Older branches might be out-of-date. Please create an
[issue](https://github.com/webcomics/pywine/issues/new/choose) if you need any
updates.