debug: dont install python and ansible packages
Some checks failed
lint, build and push / lint (push) Failing after 7s
lint, build and push / build (push) Failing after 50s

This commit is contained in:
Michael Grote 2024-12-30 20:12:26 +01:00
parent d5ea60a9ef
commit fa8c30650f

View file

@ -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 \