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
Karan Thanvi c350bd84d5
Action v1 (#1)
* initial

* test -x

* bugfix

* bash -> sh

* fix

* fix condition & install jq,curl

* fix message

* fix

* readme

* icon
2019-12-24 01:22:54 +09:00

11 lines
No EOL
219 B
Docker

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