initial checkin

This commit is contained in:
2026-05-21 19:29:54 -04:00
commit 537d69a25f
5 changed files with 266 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
# Base Image
This project creates a container image that provides purpose agnostic functionality to all extending images.
## Features
### Tools
The following tools are available.
- `curl`
### Extensible `ENTRYPOINT`
This image provides an entrypoint script that executes other entrypoint scripts, before executing the `CMD` (if provided). It will execute any executable `.sh` scripts added to the path described by the `CONTAINERD_ENTRYPOINT_PATH` environment variable. It will execute them in default sort order, so the use of numerical prefixes (`00_first.sh` or `99_last.sh`) may be wise.
### Extensible Certificate Authority
This image detects files in the path described by the `CACERT_INSTALL_PATH` environment variable. If a file is found, it will treat it as a certificate and add it to the trusted certificates in all supported contexts.
## Configuration
### Environment Variables
| Name | Default | Mutable |
| ---------------------------- | --------------- |:-------:|
| `SKIP_ENTRYPOINT_SCRIPTS` | `false` | Yes |
| `VERBOSE` | `true` | Yes |
| `CONTAINERD_ENTRYPOINT_PATH` | *not important* | No |
| `CACERT_INSTALL_PATH` | *not important* | No |