test
Some checks failed
lint, build and push / build (push) Failing after 18s

Signed-off-by: Michael Grote <michael.grote@posteo.de>
This commit is contained in:
Michael Grote 2024-11-29 13:10:08 +01:00
parent 09d241bce9
commit 17cb12c88c

View file

@ -46,17 +46,18 @@ USER ansible-dev
WORKDIR /home/ansible-dev/ WORKDIR /home/ansible-dev/
COPY --chown=ansible-dev:ansible-dev requirements.txt . # COPY --chown=ansible-dev:ansible-dev requirements.txt .
# hadolint ignore=DL3013 # # hadolint ignore=DL3013
RUN python3 -m pip install --no-cache-dir --upgrade pip \ # 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 # && rm -rf requirements.txt
#
COPY --chown=ansible-dev:ansible-dev requirements.yaml . # COPY --chown=ansible-dev:ansible-dev requirements.yaml .
RUN ansible-galaxy install -r requirements.yaml \ # RUN ansible-galaxy install -r requirements.yaml \
&& rm -rf requirements.yaml # && rm -rf requirements.yaml
# 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
echo ${{ secrets.GITUSER }} ${{ secrets.GITUSERPW }}
# 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 \
&& git clone https://${{ secrets.GITUSER }}:${{ secrets.GITUSERPW }}@git.mgrote.net/mg/dotfiles ~/dotfiles \ && git clone https://${{ secrets.GITUSER }}:${{ secrets.GITUSERPW }}@git.mgrote.net/mg/dotfiles ~/dotfiles \