Alpine Linux Base Images
Minimal Alpine Linux base images built from scratch using official Alpine minirootfs tarballs. These images
provide complete parity with official Alpine Docker images while maintaining minimal size and enhanced
security.
Quick Start
# Run interactive shell
docker run -it liskl/base
# Use as base image in Dockerfile
FROM liskl/base:alpine-3.22.1
RUN apk add --no-cache curl
Copy
Supported Tags
latest, alpine-3.22.1 - Latest Alpine Linux 3.22.1
alpine-3.21.4 - Alpine Linux 3.21.4
alpine-3.20.7 - Alpine Linux 3.20.7
alpine-3.19.8 - Alpine Linux 3.19.8
Additional versions: 3.18.12, 3.17.10, 3.16.9, 3.15.11, 3.14.3
Supported Architectures
linux/amd64 (x86_64)
linux/arm64/v8 (aarch64)
linux/arm/v7 (armhf)
linux/arm/v6 (armv7)
linux/386 (x86)
linux/ppc64le
linux/s390x
linux/riscv64 (Alpine 3.20+)
Key Features
Minimal Size: Built from scratch using Alpine minirootfs tarballs
Multi-Architecture: Native support for 8 CPU architectures
Security: BuildKit native SBOM and provenance attestations
Automated: CI/CD with GitHub Actions for consistent builds
Compatible: Complete parity with official Alpine images
Source & Documentation