Sign inSign up

webo3/alpine-base

By webo3

Updated 3 months ago

Image
0

2.2K

webo3/alpine-base repository overview

Alpine Base Image

Docker Hub: webo3/alpine-base

Lightweight Alpine Linux base image with essential system tools pre-installed. Designed as a foundation layer for building language-specific CI images (PHP, Node, etc.).

Quick Start

docker pull webo3/alpine-base:3.22    # Latest Alpine
docker pull webo3/alpine-base:3.20    # Alpine 3.20
docker pull webo3/alpine-base:3.16    # Alpine 3.16 (for older PHP)
docker pull webo3/alpine-base:latest  # Same as 3.22

Available Tags

TagAlpine VersionStatus
3.22, latest3.22Current
3.203.20Supported
3.163.16Legacy (PHP 7.4/8.0)
3.153.15Legacy (PHP 7.3)
3.123.12Legacy (PHP 7.2)

What's Included

Shell & Core Utilities
  • bash - Bourne Again Shell (default shell)
  • ca-certificates - Common CA certificates
Version Control & File Transfer
  • git - Distributed version control
  • rsync - Fast file synchronization
  • openssh - SSH client for remote operations
Network & Security
  • openssl - SSL/TLS toolkit
  • wget - Network file retriever
  • curl - URL transfer tool
  • gnupg - GNU Privacy Guard
Compression
  • tar - Archive utility
  • bzip2 - Compression utility
  • zlib - Compression library
Cloud Tools
  • aws-cli - AWS Command Line Interface
Runtime Libraries
  • libstdc++ - C++ standard library

Image Details

PropertyValue
Basealpine:<version>
ShellBash
Working Directory/app
Size~50-60MB
Platformslinux/amd64, linux/arm64

Usage Examples

As Base for Custom Image
FROM webo3/alpine-base:3.22

# Add your application dependencies
RUN apk add --no-cache python3 py3-pip

COPY . /app
CMD ["python3", "app.py"]
CI Pipeline Usage
# GitLab CI
deploy:
  image: webo3/alpine-base:3.22
  script:
    - aws s3 sync ./dist s3://my-bucket
    - rsync -avz ./files user@server:/path/
Interactive Shell
docker run -it --rm webo3/alpine-base:3.22 bash

Why This Image?

  • Minimal size - Only essential tools, keeping images small
  • CI-optimized - Pre-installed tools commonly needed in pipelines
  • Consistent base - All webo3 Alpine images share this foundation
  • Multi-arch - Supports both AMD64 and ARM64

License

This image is provided as-is for use in your projects.

Tag summary

Content type

Image

Digest

sha256:f0cf8b94a

Size

59.7 MB

Last updated

3 months ago

docker pull webo3/alpine-base