Move .bashrc and .profile files to user's home directory Updating to version 3.0.20

This commit is contained in:
2024-04-17 21:52:11 +00:00
parent 65644a8b14
commit 6a6947d855
5 changed files with 156 additions and 5 deletions

View File

@ -41,6 +41,10 @@ RUN sudo chmod -R a+rwX /home
RUN sudo sysctl -w fs.inotify.max_user_watches=524288
ADD ./.bashrc /usr/bin/.bashrc
RUN sudo chmod +x /usr/bin/.bashrc
ADD ./.profile /usr/bin/.profile
RUN sudo chmod +x /usr/bin/.profile
ADD ./entrypoint.sh /usr/bin/entrypoint.sh
RUN sudo chmod +x /usr/bin/entrypoint.sh