diff --git a/Dockerfile b/Dockerfile index e9d4e80..a59a50a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM python:3.12.4-bookworm ENV DEBIAN_FRONTEND=noninteractive +ENV PATH="$PATH:/home/ansible-user/.local/bin" # nötig damit die ansible-tools gefunden werden # hadolint ignore=DL3008 RUN apt-get update \ @@ -54,8 +55,6 @@ RUN python3 -m pip install --no-cache-dir --upgrade pip \ RUN ansible-galaxy install -r requirements.yaml --roles-path=/ansible/roles - - # dotfiles, see: https://git.mgrote.net/mg/dotfiles/raw/branch/master/scripts/setup_minimal.sh # hadolint ignore=DL3001 RUN git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim \