Skip to content

pgils/oci-images

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.