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

16 lines
343 B
Text
Raw Normal View History

2023-07-17 20:38:29 +02:00
FROM python:3.12.0b4-alpine3.18
# hadolint ignore=DL3018
RUN apk add --update --no-cache bash ca-certificates curl git jq openssh
# hadolint ignore=DL3013
2023-07-17 20:30:52 +02:00
RUN pip install 'pyyaml==5.3.1' && \
pip install wheel && \
pip install yamllint
RUN ["bin/sh", "-c", "mkdir -p /src"]
COPY ["src", "/src/"]
ENTRYPOINT ["/src/entrypoint.sh"]