Python image based on Amazon Linux 2023 minimal woth pip and uv support
1.1K
Minimal, production-ready Docker images for Python built on amazonlinux:2023-minimal.
These images are lightweight, secure, and suitable for CI pipelines, application packaging, or running Python apps in containers.
Both pip and uv Package Managers are available.
| Tag | Description |
|---|---|
latest,3-al2023,3.12-al2023 | Latest stable Python 3.12 |
3.11-al2023 | Python 3.11 |
3.9-al2023 | Python 3.9 |
my-python-app/
āāā app.py
āāā requirements.txt
āāā Dockerfile
FROM sidh4u/python:latest
# Copy application code along with requirements.txt
COPY . .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "app.py"]
Terminal:# Pull python latest
docker pull sidh4u/python:latest
# Pull python particular version
docker pull sidh4u/python:3.9-al2023
Content type
Image
Digest
sha256:95a5f9aefā¦
Size
78.8 MB
Last updated
4 months ago
docker pull sidh4u/python