Files
yamllint/Dockerfile
Yi-Ting Shih 03928e30b9
All checks were successful
Build and push image / release-image (push) Successful in 31s
Refactor: wrap with entrypoint
2025-04-26 11:20:05 +08:00

8 lines
196 B
Docker

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