diff --git a/Dockerfile b/Dockerfile index 366da6d766c493c6fbd2046d45a959e5f348490a..f4a8efbc3632975c07d9a0db7590e26f7f739c36 100644 --- a/Dockerfile +++ b/Dockerfile @@ -125,8 +125,10 @@ RUN \ /defaults && \ mv /usr/bin/with-contenv /usr/bin/with-contenvb && \ echo "**** Create our bash-aliases ****" && \ - alias ll="LC_COLLATE=C ls -ahl --group-directories-first --color=auto" && \ - alias ..="cd .." && \ + echo 'alias ll="LC_COLLATE=C ls -ahl --group-directories-first --color=auto"' \ + >> /etc/bash.bashrc && \ + echo 'alias ..="cd .."' \ + >> /etc/bash.bashrc && \ echo "**** Cleanup ****" && \ apt-get autoremove -y && \ apt-get autoclean -y && \