From: Michael Prokop Date: Fri, 8 Sep 2023 09:25:46 +0000 (+0200) Subject: Merge remote-tracking branch 'origin/pr/210' X-Git-Tag: v0.104~1 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;h=d69c1015d0c37ca63208f59def1a994579245946;hp=5825f1a6c7839df6585b1d962415f8ae3dc3c9c2;p=grml-debootstrap.git Merge remote-tracking branch 'origin/pr/210' --- diff --git a/docker/Dockerfile b/docker/Dockerfile index 00d3f32..5c405b2 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -12,8 +12,8 @@ RUN apt-get install -y grml-debootstrap bats eatmydata RUN apt-get install -y curl less vim wget zsh # grml config -RUN wget -O /root/.vimrc https://raw.githubusercontent.com/grml/grml-etc-core/master/etc/vim/vimrc -RUN wget -O /root/.zshrc https://raw.githubusercontent.com/grml/grml-etc-core/master/etc/zsh/zshrc +RUN wget -O /root/.vimrc https://raw.githubusercontent.com/grml/grml-etc-core/master/etc/vim/vimrc \ + && wget -O /root/.zshrc https://raw.githubusercontent.com/grml/grml-etc-core/master/etc/zsh/zshrc # nice defaults ENV LANG C.UTF-8 @@ -23,7 +23,7 @@ ENV TERM xterm-256color RUN echo 'APT::Get::Show-Versions "1";' > /etc/apt/apt.conf.d/verbose # cleanup -RUN apt-get clean -RUN rm -rf /var/lib/apt/lists/* +RUN apt-get clean \ + && rm -rf /var/lib/apt/lists/* ENTRYPOINT ["/bin/zsh"]