1
0
Fork 0
mirror of https://github.com/karancode/yamllint-github-action.git synced 2024-08-16 10:19:48 +02:00

explicit pyyaml install

This commit is contained in:
Nick 2023-07-17 13:30:52 -05:00
parent 71f6650ff9
commit b64f65aa8c

View file

@ -4,7 +4,9 @@ FROM python:3.11-alpine
RUN apk add --update --no-cache bash ca-certificates curl git jq openssh
# hadolint ignore=DL3013
RUN pip install yamllint==5.3.1
RUN pip install 'pyyaml==5.3.1' && \
pip install wheel && \
pip install yamllint
RUN ["bin/sh", "-c", "mkdir -p /src"]