From 594d9d1b6e96d029ebf3a8cc737694340dd9b1a6 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Mon, 6 Feb 2023 18:30:00 +0100 Subject: [PATCH] docker: retrieve vimrc + zshrc from github Avoid depending on git.grml.org service which we might deprecate --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 5439785..00d3f32 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 http://git.grml.org/f/grml-etc-core/etc/vim/vimrc -RUN wget -O /root/.zshrc http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc +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 # nice defaults ENV LANG C.UTF-8 -- 2.1.4