Can I put a progress bar in dockerfile COPY?

Viewed 630

I have created a dockerfile for my nodejs project I am first copying the code files of current directory to docker image

COPY ./ ./

I wonder, is there any option (or some other way), using which I can see the progress of copy in terminal ? something like ...

50% completed ...

It will be more helpful if I can do the same when using docker-compose !

0 Answers
Related