2019-10-21 10:12:50 -04:00
|
|
|
###########################################
|
|
|
|
###########################################
|
|
|
|
## Dockerfile to run GitHub Super-Linter ##
|
|
|
|
###########################################
|
|
|
|
###########################################
|
|
|
|
|
|
|
|
##################
|
|
|
|
# Get base image #
|
|
|
|
##################
|
|
|
|
FROM python:alpine
|
|
|
|
|
|
|
|
#########################################
|
|
|
|
# Label the instance and set maintainer #
|
|
|
|
#########################################
|
|
|
|
LABEL com.github.actions.name="GitHub Super-Linter" \
|
2019-10-21 12:05:55 -04:00
|
|
|
com.github.actions.description="Lint your code base with Github Actions" \
|
2019-10-21 10:12:50 -04:00
|
|
|
com.github.actions.icon="code" \
|
|
|
|
com.github.actions.color="red" \
|
|
|
|
maintainer="GitHub DevOps <github_devops@github.com>"
|
|
|
|
|
2019-10-21 12:05:55 -04:00
|
|
|
####################
|
|
|
|
# Run APK installs #
|
|
|
|
####################
|
2019-10-21 10:12:50 -04:00
|
|
|
RUN apk add --no-cache \
|
2019-10-23 10:51:13 -04:00
|
|
|
bash git musl-dev curl gcc jq \
|
2019-10-21 12:05:55 -04:00
|
|
|
npm nodejs \
|
2019-10-22 13:21:42 -04:00
|
|
|
libxml2-utils perl \
|
2019-10-23 10:51:13 -04:00
|
|
|
ruby ruby-dev ruby-bundler ruby-rdoc make\
|
2019-10-21 15:12:37 -04:00
|
|
|
py3-setuptools ansible-lint
|
2019-10-21 12:05:55 -04:00
|
|
|
|
|
|
|
#####################
|
|
|
|
# Run Pip3 Installs #
|
|
|
|
#####################
|
2019-11-07 11:27:14 -05:00
|
|
|
RUN pip3 --no-cache-dir install --upgrade --no-cache-dir \
|
2019-10-21 12:05:55 -04:00
|
|
|
yamllint pylint
|
2019-10-21 10:12:50 -04:00
|
|
|
|
2019-10-21 12:05:55 -04:00
|
|
|
####################
|
|
|
|
# Run NPM Installs #
|
|
|
|
####################
|
2019-11-07 11:27:14 -05:00
|
|
|
RUN npm -g --no-cache install \
|
2019-10-23 10:51:13 -04:00
|
|
|
markdownlint-cli \
|
|
|
|
jsonlint prettyjson \
|
2019-11-06 16:46:43 -05:00
|
|
|
coffeelint \
|
2019-11-07 11:27:14 -05:00
|
|
|
typescript eslint \
|
|
|
|
standard \
|
|
|
|
babel-eslint \
|
|
|
|
@typescript-eslint/eslint-plugin \
|
|
|
|
@typescript-eslint/parser \
|
|
|
|
&& npm --no-cache install \
|
|
|
|
markdownlint-cli \
|
|
|
|
jsonlint prettyjson \
|
|
|
|
coffeelint \
|
|
|
|
typescript eslint \
|
|
|
|
standard \
|
|
|
|
babel-eslint \
|
|
|
|
@typescript-eslint/eslint-plugin \
|
2019-11-07 09:16:59 -05:00
|
|
|
@typescript-eslint/parser
|
2019-10-23 10:51:13 -04:00
|
|
|
|
2019-11-07 11:28:28 -05:00
|
|
|
# I think we could fix this with path but not sure the language...
|
|
|
|
# https://github.com/nodejs/docker-node/blob/master/docs/BestPractices.md
|
2019-10-23 10:51:13 -04:00
|
|
|
####################
|
|
|
|
# Run GEM installs #
|
|
|
|
####################
|
|
|
|
RUN gem install rubocop
|
2019-10-21 12:05:55 -04:00
|
|
|
|
|
|
|
######################
|
2019-10-21 15:12:37 -04:00
|
|
|
# Install shellcheck #
|
2019-10-21 12:05:55 -04:00
|
|
|
######################
|
2019-10-21 15:12:37 -04:00
|
|
|
RUN wget -qO- "https://storage.googleapis.com/shellcheck/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv \
|
|
|
|
&& cp "shellcheck-stable/shellcheck" /usr/bin/
|
2019-10-21 10:12:50 -04:00
|
|
|
|
|
|
|
###########################################
|
|
|
|
# Load GitHub Env Vars for Github Actions #
|
|
|
|
###########################################
|
2019-10-21 15:17:27 -04:00
|
|
|
ENV GITHUB_SHA=${GITHUB_SHA} \
|
|
|
|
GITHUB_EVENT_PATH=${GITHUB_EVENT_PATH} \
|
2019-10-25 12:29:31 -04:00
|
|
|
GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \
|
|
|
|
VALIDATE_ALL_CODEBASE=${VALIDATE_ALL_CODEBASE} \
|
|
|
|
VALIDATE_YAML=${VALIDATE_YAML} \
|
|
|
|
VALIDATE_JSON=${VALIDATE_JSON} \
|
|
|
|
VALIDATE_XML=${VALIDATE_XML} \
|
|
|
|
VALIDATE_MD=${VALIDATE_MD} \
|
|
|
|
VALIDATE_BASH=${VALIDATE_BASH} \
|
|
|
|
VALIDATE_PERL=${VALIDATE_PERL} \
|
|
|
|
VALIDATE_PYTHON=${VALIDATE_PYTHON} \
|
|
|
|
VALIDATE_RUBY=${VALIDATE_RUBY} \
|
|
|
|
VALIDATE_COFFEE=${VALIDATE_COFFEE} \
|
|
|
|
VALIDATE_ANSIBLE=${VALIDATE_ANSIBLE}
|
2019-10-21 10:12:50 -04:00
|
|
|
|
2019-10-22 13:21:42 -04:00
|
|
|
#############################
|
|
|
|
# Copy scripts to container #
|
|
|
|
#############################
|
|
|
|
COPY lib /action/lib
|
|
|
|
|
|
|
|
##################################
|
|
|
|
# Copy linter rules to container #
|
|
|
|
##################################
|
|
|
|
COPY TEMPLATES /action/lib/.automation
|
2019-10-21 10:12:50 -04:00
|
|
|
|
|
|
|
######################
|
|
|
|
# Set the entrypoint #
|
|
|
|
######################
|
2019-11-07 11:27:14 -05:00
|
|
|
#RUN find / -name node_modules
|
2019-10-25 16:56:04 -04:00
|
|
|
ENTRYPOINT ["/action/lib/linter.sh"]
|
2019-10-22 13:21:42 -04:00
|
|
|
|
|
|
|
#CMD tail -f /dev/null
|