diff --git a/Dockerfile b/Dockerfile index 1fa6045..0fe9bfe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,6 @@ ENV DEBIAN_FRONTEND=noninteractive # nötig damit die ansible-tools gefunden werden ENV PATH="$PATH:/home/ansible-dev/.local/bin" - # hadolint ignore=DL3008 RUN apt-get update \ && apt-get -y --no-install-recommends install \ @@ -51,7 +50,7 @@ COPY --chown=ansible-dev:ansible-dev version.sh . # hadolint ignore=DL3013 RUN python3 -m pip install --no-cache-dir --upgrade pip \ - && python3 -m pip install --no-cache-dir -r requirements.txt + && python3 -m pip install --no-cache-dir -r requirements.txt \ && rm -rf requirements.txt COPY --chown=ansible-dev:ansible-dev requirements.yaml . @@ -59,7 +58,6 @@ COPY --chown=ansible-dev:ansible-dev requirements.yaml . RUN ansible-galaxy install -r requirements.yaml \ && rm -rf requirements.yaml - # 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 \