https://github.com/yobasystems/alpine
Alpine Linux [Docker]
https://github.com/yobasystems/alpine
alpine amd64 arm64 armhf docker docker-image dockerfile yobasystems
Last synced: 19 days ago
JSON representation
Alpine Linux [Docker]
- Host: GitHub
- URL: https://github.com/yobasystems/alpine
- Owner: yobasystems
- Created: 2017-06-09T00:13:15.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2025-03-19T13:14:43.000Z (7 months ago)
- Last Synced: 2025-04-22T12:13:33.071Z (6 months ago)
- Topics: alpine, amd64, arm64, armhf, docker, docker-image, dockerfile, yobasystems
- Language: Dockerfile
- Homepage:
- Size: 859 MB
- Stars: 11
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Alpine Linux Container Image
[](https://hub.docker.com/r/yobasystems/alpine/)
[](https://hub.docker.com/r/yobasystems/alpine/)
[](https://hub.docker.com/r/yobasystems/alpine/)[](https://alpinelinux.org/)
This Container image [(yobasystems/alpine)](https://hub.docker.com/r/yobasystems/alpine/) is based on the minimal [Alpine Linux](https://alpinelinux.org/).
### Alpine Version 3.22.1 (Released 2025-07-15)
### Alpine Version 3.21.4 (Released 2025-07-15)
### Alpine Version 3.20.7 (Released 2025-07-15)
### Alpine Version 3.19.8 (Released 2025-07-15)This Container image is the base Alpine Linux. For more info on versions & support see [Releases](https://wiki.alpinelinux.org/wiki/Alpine_Linux:Releases)
----
## Table of Contents
- [What is Alpine Linux?](#what-is-alpine-linux)
- [Features](#features)
- [Architectures](#architectures)
- [Tags](#tags)
- [Layers & Sizes](#layers-sizes)
- [How to use this image](#how-to-use-this-image)
- [Image contents & Vulnerability analysis](#image-contents-vulnerability-analysis)
- [Source Repositories](#source-repositories)
- [Container Registries](#container-registries)
- [Links](#links)## 🏔️ What is Alpine Linux?
Alpine Linux is a Linux distribution built around musl libc and BusyBox. The image is only 5 MB in size and has access to a package repository that is much more complete than other BusyBox based images. This makes Alpine Linux a great image base for utilities and even production applications. Read more about Alpine Linux here and you can see how their mantra fits in right at home with Container images.## ✨ Features
* Minimal size only, minimal layers
* Memory usage is minimal on a simple install.## 🏗️ Architectures
* ```:amd64```, ```:x86_64``` - 64 bit Intel/AMD (x86_64/amd64)
* ```:arm64v8```, ```:aarch64``` - 64 bit ARM (ARMv8/aarch64)
* ```:arm32v7```, ```:armhf``` - 32 bit ARM (ARMv7/armhf)#### 📝 PLEASE CHECK TAGS BELOW FOR SUPPORTED ARCHITECTURES, THE ABOVE IS A LIST OF EXPLANATION
## 🏷️ Tags
* ```:latest``` latest branch based on main(Automatic Architecture Selection)
* ```:main``` main branch usually inline with :latest
* ```:x.y.z```, ```:x.y.z-arch``` version tag (Automatic Architecture Selection)
* ```:amd64```, ```:x86_64``` amd64 based on latest tag but amd64 architecture
* ```:aarch64```, ```:arm64v8``` Armv8 based on latest tag but arm64 architecture
* ```:armhf```, ```:arm32v7``` Armv7 based on latest tag but arm architecture## 📏 Layers & Sizes






## 🚀 How to use this image
#### Usage
Use like you would any other base image:```
FROM yobasystems/alpine
RUN apk add --no-cache mysql-client
ENTRYPOINT ["mysql"]
```
This example has a base image size of only 6MB. Compare that to our good friend Ubuntu:```
FROM ubuntu
RUN apt-get update \
&& apt-get install -y --no-install-recommends mysql-client \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["mysql"]
```
This yields us a base image size of about 74MB image.## 🔍 Image contents & Vulnerability analysis
| PACKAGE NAME | PACKAGE VERSION | VULNERABILITIES |
|-----------------------|-----------------|-----------------|## 📚 Source Repositories
* [Github - yobasystems/alpine](https://github.com/yobasystems/alpine)
* [Gitlab - yobasystems/alpine](https://gitlab.com/yobasystems/alpine)
* [Bitbucket - yobasystems/alpine](https://bitbucket.org/yobasystems/alpine/)## 🐳 Container Registries
* [Dockerhub - yobasystems/alpine](https://hub.docker.com/r/yobasystems/alpine/)
* [Quay.io - yobasystems/alpine](https://quay.io/repository/yobasystems/alpine)
* [GHCR - yobasystems/alpine](https://ghcr.io/yobasystems/alpine)## 🔗 Links
* [Yoba Systems](https://www.yobasystems.co.uk/)
* [Github - Yoba Systems](https://github.com/yobasystems/)
* [Dockerhub - Yoba Systems](https://hub.docker.com/u/yobasystems/)
* [GHCR - Yoba Systems](https://ghcr.io/yobasystems)
* [Quay.io - Yoba Systems](https://quay.io/organization/yobasystems)
* [Maintainer - Dominic Taylor](https://github.com/dominictayloruk)