mirror of
https://github.com/ibiqlik/action-yamllint.git
synced 2025-01-31 18:21:04 +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"]
|