mirror of
https://github.com/ibiqlik/action-yamllint.git
synced 2024-11-23 18:19:33 +01: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"]
|