mirror of
https://github.com/ibiqlik/action-yamllint.git
synced 2024-11-21 22:00:57 -05:00
1685dea1ac
Add wf to autotag minor and patch releases By default use Dockerfile rather than docker image, obviously is slower by ~15 sec which consumes precious runner minutes but harder to automate releases, tagging and updating image reference in action.yaml thou not impossible. Next time.
9 lines
174 B
Docker
9 lines
174 B
Docker
FROM python:3-alpine
|
|
|
|
RUN pip install yamllint && \
|
|
apk add --no-cache bash && \
|
|
rm -rf ~/.cache/pip
|
|
|
|
ADD entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|