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.).
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
| Tag | Alpine Version | Status |
|---|---|---|
3.22, latest | 3.22 | Current |
3.20 | 3.20 | Supported |
3.16 | 3.16 | Legacy (PHP 7.4/8.0) |
3.15 | 3.15 | Legacy (PHP 7.3) |
3.12 | 3.12 | Legacy (PHP 7.2) |
| Property | Value |
|---|---|
| Base | alpine:<version> |
| Shell | Bash |
| Working Directory | /app |
| Size | ~50-60MB |
| Platforms | linux/amd64, linux/arm64 |
FROM webo3/alpine-base:3.22
# Add your application dependencies
RUN apk add --no-cache python3 py3-pip
COPY . /app
CMD ["python3", "app.py"]
# GitLab CI
deploy:
image: webo3/alpine-base:3.22
script:
- aws s3 sync ./dist s3://my-bucket
- rsync -avz ./files user@server:/path/
docker run -it --rm webo3/alpine-base:3.22 bash
This image is provided as-is for use in your projects.
Content type
Image
Digest
sha256:f0cf8b94a…
Size
59.7 MB
Last updated
3 months ago
docker pull webo3/alpine-base