A minimal Docker image based on Alpine Linux with Tini installed as the init process.
Tini is a tiny init process that helps:
- Reap zombie processes.
- Forward signals to child processes.
- Handle process termination correctly.
This image is automatically built and tagged:
latest: Always points to the newest build.<alpine-version>: Points to the specific version of Alpine used (e.g.,3.19.1).
You can use this as a base for your own Dockerfiles:
FROM himanzero/alpine-tini:latest
# Your configuration hereHere is the source Dockerfile used to build this image:
FROM alpine:latest
RUN apk add --no-cache tini
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["/bin/sh"]This repository uses GitHub Actions to:
- Check for updates to the upstream
alpine:latestimage daily. - Rebuild and push to Docker Hub automatically when an update is detected.
- Handle version tagging dynamically based on the Alpine release string.