same...
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/build Pipeline failed

This commit is contained in:
Michael Grote 2024-07-30 14:26:57 +02:00
parent 38c671749c
commit 51576b88b2

View file

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