Merge pull request #4 from lucianposton/master

Use bash in entrypoint
This commit is contained in:
Ilir Bekteshi 2020-02-24 11:28:18 +01:00 committed by GitHub
commit 420199aa6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 16 deletions

View file

@ -1,6 +1,7 @@
FROM python:3-alpine
RUN pip install yamllint && \
apk add bash && \
rm -rf ~/.cache/pip
ADD entrypoint.sh /entrypoint.sh

View file

@ -1,23 +1,27 @@
#!/bin/sh -l
#!/bin/bash -l
echo "======================"
echo "= Linting YAML files ="
echo "======================"
if [[ -n "$INPUT_CONFIG_FILE" ]]; then
options+=(-c "$INPUT_CONFIG_FILE")
fi
if [[ -n "$INPUT_CONFIG_DATA" ]]; then
options+=(-d "$INPUT_CONFIG_DATA")
fi
options+=(-f "$INPUT_FORMAT")
if [[ "$INPUT_STRICT" == "true" ]]; then
options+=(-s)
fi
# Enable globstar so ** globs recursively
shopt -s globstar
# Use the current directory by default
export INPUT_FILE_OR_DIR=${INPUT_FILE_OR_DIR:-.}
options+=(${INPUT_FILE_OR_DIR:-.})
shopt -u globstar
STRICT=""
if [ "$INPUT_STRICT" == "true" ]; then
STRICT="-s"
fi
if [ ! -z "$INPUT_CONFIG_FILE" ]; then
CONFIG_FILE="-c $INPUT_CONFIG_FILE"
fi
if [ ! -z "$INPUT_CONFIG_DATA" ]; then
CONFIG_DATA="-d $INPUT_CONFIG_DATA"
fi
yamllint $CONFIG_FILE $CONFIG_DATA -f $INPUT_FORMAT $STRICT $INPUT_FILE_OR_DIR
yamllint "${options[@]}"