otf icon indicating copy to clipboard operation
otf copied to clipboard

container build improvements

Open aceat64 opened this issue 4 months ago • 4 comments

  • build otfd and otf-agent images from the same Dockerfile
    • Consistent image builds
  • compile binaries in docker build
    • Simplifies the build process, as all build-time dependencies are handled within Docker
  • docker build cache optimizations
    • binaries are only built once (per platform) and then copied into the final images
    • leverages Docker cache volumes, without leaving any cache files in the image itself
  • run container images as non-root user/group
    • Improved security
  • tini for signal handling and reaping zombie processes

aceat64 avatar Aug 30 '25 06:08 aceat64