mirror of
https://github.com/ibiqlik/action-yamllint.git
synced 2024-11-28 17:11:10 -05:00
7 lines
124 B
Docker
7 lines
124 B
Docker
FROM python:3-alpine
|
|
|
|
RUN apk add --no-cache bash yamllint
|
|
|
|
ADD entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|