From b41969f92090863b5cd93c022244a3cecc1f7929 Mon Sep 17 00:00:00 2001 From: nickb <nickb@ssec.wisc.edu> Date: Sun, 24 Jul 2016 03:46:41 -0500 Subject: [PATCH] apparenty we do still need bashrc --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7355519..2d0adf1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -83,6 +83,6 @@ RUN rm -rf /build RUN rm -rf /usr/man # throw in some minor shell niceties -RUN alias ls='ls --color=auto' && \ - alias ll='ls -lGh $@' +RUN echo 'alias ls="ls --color=auto"' >> ~/.bashrc && \ + echo 'alias ll="ls -lGh $@"' >> ~/.bashrc -- GitLab