From fa8c30650fed2cc39053ecc7ea040a643f20e4de Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Mon, 30 Dec 2024 20:12:26 +0100 Subject: [PATCH] debug: dont install python and ansible packages --- Dockerfile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index d0dce4a..1be8135 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,16 +45,6 @@ USER ansible-dev WORKDIR /home/ansible-dev/ -COPY --chown=ansible-dev:ansible-dev requirements.txt . -# hadolint ignore=DL3013 -RUN python3 -m pip install --no-cache-dir --upgrade pip \ - && python3 -m pip install --no-cache-dir -r requirements.txt \ - && rm -rf requirements.txt - -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 \