/oci-images

OCI (base) images

Primary LanguageDockerfileBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

OCI Images

Build images

Various OCI images.

Images

Slim Debian image based on debian:<suite>-slim.

Generic build image based on buildpack-deps,

Additional packages included:

  • Bitbake
  • Debian package development tools
  • LLVM-clang
  • Golang compiler
  • UPX
  • rclone

Usage

Docker
> docker run -ti --rm -v $(pwd):/work ghcr.io/pgils/debian-build:bookworm

The uid and gid of the builder user in the container are automatically updated to match the ownership of the /work directory by the entrypoint script.

Podman
> podman run -ti --rm -v $(pwd):/work --entrypoint bash ghcr.io/pgils/debian-build:bookworm

Override the entrypoint to prevent unnecessary user switching since root will already be mapped to the unprivileged user on the host.