superlint/Dockerfile

205 lines
7.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 \
2020-06-25 02:13:19 -04:00
go \
openjdk8-jre \
2020-06-22 15:24:06 -04:00
php7 \
ca-certificates less ncurses-terminfo-base \
krb5-libs libgcc libintl libssl1.1 libstdc++ \
tzdata userspace-rcu zlib icu-libs lttng-ust
2020-06-22 10:40:19 -04:00
#########################################
# Install Powershell + PSScriptAnalyzer #
#########################################
# Reference: https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-linux?view=powershell-7
# Slightly modified to always retrieve latest stable Powershell version
RUN mkdir -p /opt/microsoft/powershell/7 \
&& curl -s https://api.github.com/repos/powershell/powershell/releases/latest \
| grep browser_download_url \
| grep linux-alpine-x64 \
| cut -d '"' -f 4 \
| xargs -n 1 wget -O - \
| tar -xzC /opt/microsoft/powershell/7 \
&& ln -s /opt/microsoft/powershell/7/pwsh /usr/bin/pwsh \
&& pwsh -c 'install-module psscriptanalyzer -force'
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-25 02:13:19 -04:00
@stoplight/spectral \
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
2020-06-21 00:01:16 -04:00
# We then need to promote the correct version, uninstall, and fix deps
2020-06-22 14:55:41 -04:00
RUN sh -c 'INCORRECT_VERSION=$(gem list rhc -e rubocop | grep rubocop | awk "{print $2}" | cut -d"(" -f2 | cut -d"," -f1); \
gem install --default rubocop:0.74.0; \
yes | gem uninstall rubocop:$INCORRECT_VERSION -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
2020-06-19 14:30:28 -04:00
#####################
# Install clj-kondo #
#####################
2020-06-19 14:34:53 -04:00
ARG CLJ_KONDO_VERSION='2020.06.12'
RUN curl -sLO https://github.com/borkdude/clj-kondo/releases/download/v${CLJ_KONDO_VERSION}/clj-kondo-${CLJ_KONDO_VERSION}-linux-static-amd64.zip \
&& unzip clj-kondo-${CLJ_KONDO_VERSION}-linux-static-amd64.zip \
&& rm clj-kondo-${CLJ_KONDO_VERSION}-linux-static-amd64.zip \
2020-06-19 14:30:28 -04:00
&& mv clj-kondo /usr/bin/
2020-06-21 03:59:18 -04:00
##################
# Install ktlint #
##################
2020-06-21 22:07:39 -04:00
RUN curl -sSLO https://github.com/pinterest/ktlint/releases/latest/download/ktlint && chmod a+x ktlint \
2020-06-21 03:59:18 -04:00
&& mv "ktlint" /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} \
2020-06-23 08:58:56 -04:00
LINTER_RULES_PATH=${LINTER_RULES_PATH} \
2019-10-25 12:29:31 -04:00
VALIDATE_YAML=${VALIDATE_YAML} \
VALIDATE_JSON=${VALIDATE_JSON} \
VALIDATE_XML=${VALIDATE_XML} \
VALIDATE_MD=${VALIDATE_MD} \
VALIDATE_BASH=${VALIDATE_BASH} \
VALIDATE_PERL=${VALIDATE_PERL} \
2020-06-18 13:53:24 -04:00
VALIDATE_PHP=${VALIDATE_PHP} \
2019-10-25 12:29:31 -04:00
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-06-19 14:30:28 -04:00
VALIDATE_CLOJURE=${VALIDATE_CLOJURE} \
2020-06-21 03:59:18 -04:00
VALIDATE_KOTLIN=${VALIDATE_KOTLIN} \
VALIDATE_POWERSHELL=${VALIDATE_POWERSHELL} \
2020-06-25 02:13:19 -04:00
VALIDATE_OPENAPI=${VALIDATE_OPENAPI} \
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} \
2020-06-23 10:25:12 -04:00
DISABLE_ERRORS=${DISABLE_ERRORS} \
OUTPUT_FORMAT=${OUTPUT_FORMAT} \
OUTPUT_FOLDER=${OUTPUT_FOLDER}
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"]