This appendix outlines two examples for, creating on target, testing on target, where a binary package is created and can be uploaded to a private Debian PPA or a Docker hub.
Both examples use a simple hello.c file with the following content:
#include <stdio.h>
int main()
{
printf("Hello World!\n");
}