Pythonista is a Docker image for Python developers to test their applications against common python interpreters. The image was originaly created by ikalnitsky (see pythonista) for 64bit containers. Since one of my statging servers is running on 32bit, this fork was created
Pythonista image is available on Docker Hub, so you can easily pull
it by means docker client:
$ [sudo] docker pull patrickjahns/pythonista-x86_32
If you want to enter a bash session, just do it how you did it for another containers:
$ [sudo] docker run -t -i patrickjahns/pythonista-x86-32 bash
and enjoy bash session within container.
It's very convenient to run unit tests inside Pythonista container because you can run it using different Python interpreters. For example, with tox the command might look like:
$ [sudo] docker run -v /path/to/src/:/src -w /src patrickjahns/pythonista-x86-32 tox
It's important for me to get user's feedback, so please don't hesitate to suggest improvements or report bugs via GitHub Issue.
Content type
Image
Digest
sha256:d40c84f98…
Size
304.4 MB
Last updated
almost 11 years ago
docker pull patrickjahns/pythonista-x86-32