Sign inSign up

rmdamascenorep/python

By rmdamascenorep

Updated 10 months ago

Lightweight Python images based on Alpine Linux with pip pre-installed for Python development.

Image
Languages & frameworks
Developer tools
Web servers
0

267

rmdamascenorep/python repository overview

Python Alpine Images

Efficient Python runtime images built on Alpine Linux 3.19 with pip included.

🏷️ Available Tags

  • alpine-3.10, alpine-3.11 - Python 3.11 (mapped versions)
  • alpine-3.12, alpine-3.12-lts - Python 3.11 LTS ⭐ (recommended)
  • alpine-3.13 - Python 3.11 (mapped version)

🚀 Quick Start

# Run Python version
docker run --rm rmdamascenorep/python:alpine-3.12-lts

# Use as base image
FROM rmdamascenorep/python:alpine-3.12-lts
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]

📦 What's Included

  • Python 3.11.14
  • pip 23.3.1
  • Alpine Linux 3.19 base
  • python symlink configured
  • Essential Python libraries

🔧 Environment Variables

  • PYTHON_VERSION=3.11.14
  • PATH includes Python binaries

📊 Image Size

~78MB (much smaller than Debian-based images)

🛡️ Security

  • Regular security updates
  • Minimal base image
  • Latest pip version

🐍 Python Features

  • Full Python 3.11 compatibility
  • pip package manager
  • Virtual environment support

📝 License

Python is licensed under PSF License

Tag summary

Content type

Image

Digest

sha256:1f895e41e

Size

26.1 MB

Last updated

10 months ago

docker pull rmdamascenorep/python:alpine-3.11