superlint/Dockerfile

158 lines
5.3 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" \
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 \
2020-04-16 14:20:05 -04:00
bash git git-lfs musl-dev curl gcc jq file\
2019-10-21 12:05:55 -04:00
npm nodejs \
2019-10-22 13:21:42 -04:00
libxml2-utils perl \
2020-02-28 10:51:29 -05:00
ruby ruby-dev ruby-bundler ruby-rdoc make \
py3-setuptools ansible-lint \
go
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 #
####################
2020-06-17 14:26:54 -04:00
RUN npm config set package-lock false \
&& npm config set loglevel error \
&& npm -g --no-cache install \
markdownlint-cli \
jsonlint prettyjson \
2020-06-18 17:29:06 -04:00
@coffeelint/cli \
2020-06-17 14:26:54 -04:00
typescript eslint \
standard \
babel-eslint \
@typescript-eslint/eslint-plugin \
@typescript-eslint/parser \
eslint-plugin-jest \
stylelint \
stylelint-config-standard \
2020-06-17 14:26:54 -04:00
&& npm --no-cache install \
markdownlint-cli \
jsonlint prettyjson \
2020-06-18 17:29:06 -04:00
@coffeelint/cli \
2020-06-17 14:26:54 -04:00
typescript eslint \
standard \
babel-eslint \
prettier \
eslint-config-prettier \
@typescript-eslint/eslint-plugin \
@typescript-eslint/parser \
eslint-plugin-jest \
stylelint \
stylelint-config-standard
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
2020-02-28 10:51:29 -05:00
2019-10-23 10:51:13 -04:00
####################
# Run GEM installs #
####################
2020-06-17 10:36:57 -04:00
RUN gem install rubocop:0.74.0 rubocop-rails rubocop-github:0.13.0
# Need to fix the version as it installs 'rubocop:0.85.1' as a dep, and forces the default
# We then need to promot the correct verion, uninstall, and fix deps
RUN sh -c 'gem install --default rubocop:0.74.0; yes | gem uninstall rubocop:0.85.1 -a -x -I; gem install rubocop:0.74.0'
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
######################
RUN wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv \
2020-03-12 08:52:44 -04:00
&& mv "shellcheck-stable/shellcheck" /usr/bin/
2019-10-21 10:12:50 -04:00
2020-02-28 10:51:29 -05:00
#####################
# Install Go Linter #
#####################
ARG GO_VERSION='v1.27.0'
2020-06-17 14:26:54 -04:00
RUN wget -O- -nvq https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s "$GO_VERSION"
2020-02-28 10:51:29 -05:00
2020-03-11 15:18:21 -04:00
##################
# Install TFLint #
##################
2020-06-17 14:26:54 -04:00
RUN curl -Ls "$(curl -Ls https://api.github.com/repos/terraform-linters/tflint/releases/latest | grep -o -E "https://.+?_linux_amd64.zip")" -o tflint.zip && unzip tflint.zip && rm tflint.zip \
2020-03-12 08:52:44 -04:00
&& mv "tflint" /usr/bin/
2020-03-11 15:18:21 -04:00
##################
# Install dotenv-linter #
##################
RUN wget "https://github.com/dotenv-linter/dotenv-linter/releases/latest/download/dotenv-linter-alpine-x86_64.tar.gz" -O - -q | tar -xzf - \
&& mv "dotenv-linter" /usr/bin
2019-10-21 10:12:50 -04:00
###########################################
# Load GitHub Env Vars for GitHub Actions #
2019-10-21 10:12:50 -04:00
###########################################
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} \
DEFAULT_BRANCH=${DEFAULT_BRANCH} \
2019-10-25 12:29:31 -04:00
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} \
2020-04-02 13:42:07 -04:00
VALIDATE_JAVASCRIPT_ES=${VALIDATE_JAVASCRIPT_ES} \
VALIDATE_JAVASCRIPT_STANDARD=${VALIDATE_JAVASCRIPT_STANDARD} \
VALIDATE_TYPESCRIPT_ES=${VALIDATE_TYPESCRIPT_ES} \
VALIDATE_TYPESCRIPT_STANDARD=${VALIDATE_TYPESCRIPT_STANDARD} \
2020-02-28 10:51:29 -05:00
VALIDATE_GO=${VALIDATE_GO} \
2020-03-11 15:18:21 -04:00
VALIDATE_TERRAFORM=${VALIDATE_TERRAFORM} \
VALIDATE_CSS=${VALIDATE_CSS} \
VALIDATE_ENV=${VALIDATE_ENV} \
2020-01-09 11:29:18 -05:00
ANSIBLE_DIRECTORY=${ANSIBLE_DIRECTORY} \
2020-02-04 12:49:07 -05:00
RUN_LOCAL=${RUN_LOCAL} \
2020-04-27 13:03:37 -04:00
TEST_CASE_RUN=${TEST_CASE_RUN} \
ACTIONS_RUNNER_DEBUG=${ACTIONS_RUNNER_DEBUG} \
DISABLE_ERRORS=${DISABLE_ERRORS}
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"]