I tried adding to the PATH in the files ~/.profile and /etc/profile as follow.
PATH
~/.profile
/etc/profile
PATH = $PATH:/required/path
If you want to include a /new/path in the Dockerfile, adding the line:
/new/path
ENV PATH "$PATH:/new/path"
in Dockerfile should work.