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:
parent
71f6650ff9
commit
b64f65aa8c
1 changed files with 3 additions and 1 deletions
|
@ -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"]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue