mirror of
https://github.com/rancher/os.git
synced 2025-06-23 21:47:03 +00:00
10 lines
495 B
Plaintext
10 lines
495 B
Plaintext
FROM base
|
|
COPY scripts/dockerimages/scripts/console.sh /usr/sbin/
|
|
RUN echo 'set bell-style none' > /etc/inputrc && \
|
|
adduser -g rancher -G sudo -D -h /home/rancher -s /bin/bash rancher && \
|
|
sed -i 's/\(docker.*\)/\1rancher/g' /etc/group && \
|
|
sed -i 's/rancher.*/rancher:rixbL64o6zGmY:16486:0:99999:7:::/g' /etc/shadow && \
|
|
echo '## allow password less for rancher user' >> /etc/sudoers && \
|
|
echo 'rancher ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
|
|
CMD ["/usr/sbin/console.sh"]
|