1
0
Fork 0
mirror of https://github.com/karancode/yamllint-github-action.git synced 2024-08-16 10:19:48 +02:00
yamllint/Dockerfile
Richard Steinbrück dd59165b84
Add testing framework bats and fix #4 (#5)
* Fix mdl issues

* Add bats as testing framework

* Fix #4

* Add GitHub codeowner file

* Add Dependabot config

* Add github workflow for testing

* don't comment if yamllint is successful (fixes #2)

* remove GITHUB_EVENT.json
2020-04-28 17:39:44 +09:00

13 lines
270 B
Docker

FROM python:3.7-alpine
# hadolint ignore=DL3018
RUN apk add --update --no-cache bash ca-certificates curl git jq openssh
# hadolint ignore=DL3013
RUN pip install yamllint
RUN ["bin/sh", "-c", "mkdir -p /src"]
COPY ["src", "/src/"]
ENTRYPOINT ["/src/entrypoint.sh"]