yamllint/Dockerfile
Ilir Bekteshi 1685dea1ac Autotag releases, use Dockerfile (for now) #5
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.
2020-02-28 10:14:09 +01:00

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"]