superlint/Dockerfile

118 lines
3.6 KiB
Docker
Raw Normal View History

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-12-12 11:34:58 -05:00
yamllint pylint yq
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 \
eslint-plugin-jest \
2019-11-07 11:27:14 -05:00
&& npm --no-cache install \
markdownlint-cli \
jsonlint prettyjson \
coffeelint \
typescript eslint \
standard \
babel-eslint \
2019-12-13 09:47:05 -05:00
prettier \
2019-12-13 09:55:41 -05:00
eslint-config-prettier \
2019-11-07 11:27:14 -05:00
@typescript-eslint/eslint-plugin \
2019-11-07 09:16:59 -05:00
@typescript-eslint/parser
2019-10-23 10:51:13 -04:00
2020-01-31 17:24:33 -05:00
####################################
# Install dockerfilelint from repo #
####################################
RUN git clone https://github.com/replicatedhq/dockerfilelint.git && cd /dockerfilelint && npm install
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 #
####################
2020-01-29 14:56:22 -05:00
RUN gem install rubocop:0.74 rubocop-rails rubocop-github:0.13
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} \
2019-11-08 10:00:07 -05:00
VALIDATE_ANSIBLE=${VALIDATE_ANSIBLE} \
2020-01-09 17:08:01 -05:00
VALIDATE_DOCKER=${VALIDATE_DOCKER} \
2019-12-03 14:47:23 -05:00
VALIDATE_JAVASCRIPT=${VALIDATE_JAVASCRIPT} \
2020-01-09 11:29:18 -05:00
ANSIBLE_DIRECTORY=${ANSIBLE_DIRECTORY} \
2020-02-04 12:49:07 -05:00
RUN_LOCAL=${RUN_LOCAL} \
TEST_CASE_RUN=${TEST_CASE_RUN}
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-10-25 16:56:04 -04:00
ENTRYPOINT ["/action/lib/linter.sh"]