Ändern oder festlegen Kennwort interaktiv unter Linux
#change the root password
RUN echo 'root:Docker!' | chpasswd
#or
RUN echo 'Docker!' | passwd --stdin root
DreamCoder