79102164

Date: 2024-10-18 12:57:58
Score: 0.5
Natty:
Report link

~/.bashrc is only executed for login shell. If you want it to be executed in the next RUN commands, you must specify it explicitly, like this:

RUN bash -l -c '...'

or

RUN . ~/.bashrc; ...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: LogicDaemon