Fix: sh location in busybox
All checks were successful
Lint with yamllint / lint (push) Successful in -14s

This commit is contained in:
2025-04-26 11:43:22 +08:00
parent f3ecf70d7d
commit aafa4c99af
2 changed files with 3 additions and 2 deletions

View File

@@ -3,5 +3,5 @@ FROM gitea.konchin.com/image/alpine:latest
RUN apk --no-cache add --no-check-certificate yamllint
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/usr/bin/sh"]
ENTRYPOINT ["/bin/sh"]
CMD ["/entrypoint.sh"]

View File

@@ -1,3 +1,4 @@
#!/usr/bin/sh
#!/bin/sh
yamllint --list-files "${INPUT_CONTEXT}"
yamllint "${INPUT_CONTEXT}"