[C] String Copy

while (*s++ = *t++);

1. *s = *t
2. *s+=1 and *t+=1
3. *t == NULL ||  -> Exit
     *t != NULL     -> do 1

Build docker image from multiple build contexts

Build docker image from multiple build contexts ...