fix PATH
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 10:38:53 +02:00
parent 25033e8520
commit 4c88a39ac5

View file

@ -1,6 +1,7 @@
FROM python:3.12.4-bookworm FROM python:3.12.4-bookworm
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
ENV PATH="$PATH:/home/ansible-user/.local/bin" # nötig damit die ansible-tools gefunden werden
# hadolint ignore=DL3008 # hadolint ignore=DL3008
RUN apt-get update \ 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 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 # dotfiles, see: https://git.mgrote.net/mg/dotfiles/raw/branch/master/scripts/setup_minimal.sh
# hadolint ignore=DL3001 # hadolint ignore=DL3001
RUN git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim \ RUN git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim \