We all know that when writing Dockerfile
, there is only one FROM
instruction that indicates the parent image on which it depends.
I now build my own image through the nginx
image, which is called my-nginx
so, can I build a new image through FROM my-nginx
and push to overwrite my-nginx
?
means FROM
in Dockerfile
. Can you FORM
yourself?