superlint/Dockerfile

407 lines
13 KiB
Docker
Raw Normal View History

2019-10-21 10:12:50 -04:00
###########################################
###########################################
## Dockerfile to run GitHub Super-Linter ##
###########################################
###########################################
2020-07-17 14:11:41 -04:00
#########################################
# Get dependency images as build stages #
#########################################
FROM alpine/terragrunt:1.4.4 as terragrunt
FROM tenable/terrascan:1.17.1 as terrascan
FROM assignuser/chktex-alpine:v0.1.1 as chktex
FROM cljkondo/clj-kondo:2023.03.17-alpine as clj-kondo
FROM dotenvlinter/dotenv-linter:3.3.0 as dotenv-linter
FROM ghcr.io/awkbar-devops/clang-format:v1.0.2 as clang-format
FROM ghcr.io/terraform-linters/tflint-bundle:v0.46.0.1 as tflint
FROM ghcr.io/yannh/kubeconform:v0.6.1 as kubeconfrm
FROM golangci/golangci-lint:v1.52.2 as golangci-lint
FROM hadolint/hadolint:latest-alpine as dockerfile-lint
FROM hashicorp/terraform:1.4.4 as terraform
FROM koalaman/shellcheck:v0.9.0 as shellcheck
FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker
FROM mvdan/shfmt:v3.6.0 as shfmt
FROM rhysd/actionlint:1.6.24 as actionlint
FROM scalameta/scalafmt:v3.6.1 as scalafmt
FROM yoheimuta/protolint:0.43.1 as protolint
FROM zricethezav/gitleaks:v8.16.2 as gitleaks
2020-08-20 10:47:01 -04:00
2019-10-21 10:12:50 -04:00
##################
# Get base image #
##################
FROM python:3.11.1-alpine3.17 as base_image
2020-09-04 04:09:20 -04:00
2020-07-02 17:31:16 -04:00
################################
# Set ARG values used in Build #
################################
ARG CHECKSTYLE_VERSION='10.3.4'
2020-07-15 16:49:42 -04:00
# Dart Linter
## stable dart sdk: https://dart.dev/get-dart#release-channels
ARG DART_VERSION='2.8.4'
ARG GOOGLE_JAVA_FORMAT_VERSION='1.15.0'
2020-07-15 16:49:42 -04:00
## install alpine-pkg-glibc (glibc compatibility layer package for Alpine Linux)
ARG GLIBC_VERSION='2.34-r0'
ARG KTLINT_VERSION='0.47.1'
# PowerShell & PSScriptAnalyzer linter
ARG PSSA_VERSION='1.21.0'
ARG PWSH_DIRECTORY='/usr/lib/microsoft/powershell'
ARG PWSH_VERSION='v7.3.1'
2020-07-02 17:31:16 -04:00
2019-10-21 12:05:55 -04:00
####################
# Run APK installs #
####################
RUN apk add --no-cache \
2020-07-04 12:06:52 -04:00
bash \
ca-certificates \
cargo \
2020-07-24 13:27:54 -04:00
coreutils \
2020-07-04 12:06:52 -04:00
curl \
2020-08-25 15:47:55 -04:00
file \
2020-07-04 12:06:52 -04:00
gcc \
g++ \
git git-lfs \
go \
2020-08-18 18:54:32 -04:00
gnupg \
2020-07-04 12:06:52 -04:00
icu-libs \
jpeg-dev \
2020-07-04 12:06:52 -04:00
jq \
2020-08-25 13:58:20 -04:00
krb5-libs \
libc-dev libcurl libffi-dev libgcc \
libintl libssl1.1 libstdc++ \
libxml2-dev libxml2-utils \
linux-headers \
lttng-ust-dev \
2020-07-04 12:06:52 -04:00
make \
musl-dev \
2021-11-16 10:47:23 -05:00
net-snmp-dev \
2020-07-23 13:15:28 -04:00
npm nodejs-current \
openjdk11-jre \
openssh-client \
openssl-dev \
2020-08-07 08:58:40 -04:00
perl perl-dev \
py3-setuptools python3-dev \
py3-pyflakes \
2020-10-24 06:16:37 -04:00
R R-dev R-doc \
2020-07-24 13:27:54 -04:00
readline-dev \
2020-10-24 06:16:37 -04:00
ruby ruby-dev ruby-bundler ruby-rdoc \
rustup \
2020-10-24 06:16:37 -04:00
zlib zlib-dev
2020-08-20 10:44:11 -04:00
########################################
# Copy dependencies files to container #
########################################
COPY dependencies/* /
#############################
# Install Dependencies #
#############################
RUN npm install && bundle install
2020-08-07 08:58:40 -04:00
##############################
# Installs Perl dependencies #
##############################
RUN curl --retry 5 --retry-delay 5 -sL https://cpanmin.us/ | perl - -nq --no-wget Perl::Critic Perl::Critic::Community
2020-07-02 17:31:16 -04:00
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
######################
2020-07-17 14:11:41 -04:00
COPY --from=shellcheck /bin/shellcheck /usr/bin/
2019-10-21 10:12:50 -04:00
2020-02-28 10:51:29 -05:00
#####################
# Install Go Linter #
#####################
2020-07-17 14:11:41 -04:00
COPY --from=golangci-lint /usr/bin/golangci-lint /usr/bin/
2020-02-28 10:51:29 -05:00
#####################
# Install Terraform #
#####################
COPY --from=terraform /bin/terraform /usr/bin/
2020-03-11 15:18:21 -04:00
##################
# Install TFLint #
##################
2020-07-17 14:11:41 -04:00
COPY --from=tflint /usr/local/bin/tflint /usr/bin/
COPY --from=tflint /root/.tflint.d /root/.tflint.d
2020-03-11 15:18:21 -04:00
#####################
2020-08-17 22:25:36 -04:00
# Install Terrascan #
#####################
2020-08-17 22:25:36 -04:00
COPY --from=terrascan /go/bin/terrascan /usr/bin/
2020-10-08 09:18:08 -04:00
######################
# Install Terragrunt #
######################
COPY --from=terragrunt /usr/local/bin/terragrunt /usr/bin/
2020-06-28 07:07:51 -04:00
######################
# Install protolint #
######################
2020-07-17 14:11:41 -04:00
COPY --from=protolint /usr/local/bin/protolint /usr/bin/
2020-06-28 07:07:51 -04:00
2020-06-19 14:30:28 -04:00
#####################
# Install clj-kondo #
#####################
COPY --from=clj-kondo /bin/clj-kondo /usr/bin/
2020-07-17 14:11:41 -04:00
################################
# Install editorconfig-checker #
################################
COPY --from=editorconfig-checker /usr/bin/ec /usr/bin/editorconfig-checker
2020-06-19 14:30:28 -04:00
2020-08-04 14:53:32 -04:00
###############################
# Install hadolint dockerfile #
###############################
2020-08-04 14:55:14 -04:00
COPY --from=dockerfile-lint /bin/hadolint /usr/bin/hadolint
2020-08-04 14:53:32 -04:00
2020-06-21 03:59:18 -04:00
##################
# Install chktex #
2020-06-21 03:59:18 -04:00
##################
COPY --from=chktex /usr/bin/chktex /usr/bin/
#################
# Install shfmt #
#################
COPY --from=shfmt /bin/shfmt /usr/bin/
2020-06-21 03:59:18 -04:00
########################
# Install clang-format #
########################
COPY --from=clang-format /usr/bin/clang-format /usr/bin/
####################
# Install GitLeaks #
####################
COPY --from=gitleaks /usr/bin/gitleaks /usr/bin/
####################
# Install scalafmt #
####################
COPY --from=scalafmt /bin/scalafmt /usr/bin/
2021-11-23 15:56:57 -05:00
######################
# Install actionlint #
######################
COPY --from=actionlint /usr/local/bin/actionlint /usr/bin/
######################
# Install kubeconform #
######################
COPY --from=kubeconfrm /kubeconform /usr/bin/
#################
# Install Lintr #
#################
COPY scripts/install-lintr.sh /
RUN /install-lintr.sh && rm -rf /install-lintr.sh
# Source: https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub
# Store the key here because the above host is sometimes down, and breaks our builds
COPY dependencies/sgerrand.rsa.pub /etc/apk/keys/sgerrand.rsa.pub
##################
# Install ktlint #
##################
COPY scripts/install-ktlint.sh /
RUN --mount=type=secret,id=GITHUB_TOKEN /install-ktlint.sh && rm -rf /install-ktlint.sh
2020-08-28 10:56:53 -04:00
2020-08-25 13:58:20 -04:00
#################################################
# Install Raku and additional Edge dependencies #
#################################################
2020-07-05 22:21:13 -04:00
# Basic setup, programs and init
COPY scripts/install-raku.sh /
RUN --mount=type=secret,id=GITHUB_TOKEN /install-raku.sh && rm -rf /install-raku.sh
################################################################################
# Grab small clean image to build python packages ##############################
################################################################################
FROM python:3.11.1-alpine3.17 as python_builder
RUN apk add --no-cache bash g++ git libffi-dev
COPY dependencies/python/ /stage
WORKDIR /stage
RUN ./build-venvs.sh
################################################################################
# Grab small clean image to build slim ###################################
################################################################################
FROM alpine:3.17.3 as slim
2020-07-24 13:27:54 -04:00
############################
# Get the build arguements #
############################
ARG BUILD_DATE
ARG BUILD_REVISION
ARG BUILD_VERSION
## install alpine-pkg-glibc (glibc compatibility layer package for Alpine Linux)
ARG GLIBC_VERSION='2.34-r0'
2020-08-15 14:21:57 -04:00
#########################################
# 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" \
com.github.actions.icon="code" \
com.github.actions.color="red" \
maintainer="GitHub DevOps <github_devops@github.com>" \
org.opencontainers.image.created=$BUILD_DATE \
org.opencontainers.image.revision=$BUILD_REVISION \
org.opencontainers.image.version=$BUILD_VERSION \
org.opencontainers.image.authors="GitHub DevOps <github_devops@github.com>" \
org.opencontainers.image.url="https://github.com/github/super-linter" \
org.opencontainers.image.source="https://github.com/github/super-linter" \
org.opencontainers.image.documentation="https://github.com/github/super-linter" \
org.opencontainers.image.vendor="GitHub" \
org.opencontainers.image.description="Lint your code base with GitHub Actions"
2020-08-18 18:54:32 -04:00
#################################################
# Set ENV values used for debugging the version #
#################################################
ENV BUILD_DATE=$BUILD_DATE
ENV BUILD_REVISION=$BUILD_REVISION
ENV BUILD_VERSION=$BUILD_VERSION
ENV IMAGE="slim"
2020-09-21 18:53:30 -04:00
# Source: https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub
# Store the key here because the above host is sometimes down, and breaks our builds
COPY dependencies/sgerrand.rsa.pub /etc/apk/keys/sgerrand.rsa.pub
###############
# Install Git #
###############
RUN apk add --no-cache bash git git-lfs
##############################
# Install Phive dependencies #
##############################
COPY scripts/install-phive.sh /
RUN --mount=type=secret,id=GITHUB_TOKEN /install-phive.sh && rm -rf /install-phive.sh
####################################################
# Install Composer after all Libs have been copied #
####################################################
RUN sh -c 'curl --retry 5 --retry-delay 5 --show-error -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer'
#################################
# Copy the libraries into image #
#################################
COPY --from=base_image /usr/bin/ /usr/bin/
COPY --from=base_image /usr/local/bin/ /usr/local/bin/
COPY --from=base_image /usr/local/lib/ /usr/local/lib/
COPY --from=base_image /usr/local/share/ /usr/local/share/
COPY --from=base_image /usr/local/include/ /usr/local/include/
COPY --from=base_image /usr/lib/ /usr/lib/
COPY --from=base_image /usr/share/ /usr/share/
COPY --from=base_image /usr/include/ /usr/include/
COPY --from=base_image /lib/ /lib/
COPY --from=base_image /bin/ /bin/
COPY --from=base_image /node_modules/ /node_modules/
COPY --from=base_image /home/r-library /home/r-library
COPY --from=base_image /root/.tflint.d/ /root/.tflint.d/
COPY --from=python_builder /venvs/ /venvs/
##################################
# Configure TFLint plugin folder #
##################################
ENV TFLINT_PLUGIN_DIR="/root/.tflint.d/plugins"
########################################
# Add node packages to path and dotnet #
########################################
ENV PATH="${PATH}:/node_modules/.bin"
2020-08-28 14:42:32 -04:00
###############################
# Add python packages to path #
###############################
ENV PATH="${PATH}:/venvs/ansible-lint/bin"
ENV PATH="${PATH}:/venvs/black/bin"
ENV PATH="${PATH}:/venvs/cfn-lint/bin"
ENV PATH="${PATH}:/venvs/cpplint/bin"
ENV PATH="${PATH}:/venvs/flake8/bin"
ENV PATH="${PATH}:/venvs/isort/bin"
ENV PATH="${PATH}:/venvs/mypy/bin"
ENV PATH="${PATH}:/venvs/pylint/bin"
ENV PATH="${PATH}:/venvs/snakefmt/bin"
ENV PATH="${PATH}:/venvs/snakemake/bin"
ENV PATH="${PATH}:/venvs/sqlfluff/bin"
ENV PATH="${PATH}:/venvs/yamllint/bin"
ENV PATH="${PATH}:/venvs/yq/bin"
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
################
# Pull in libs #
################
COPY --from=base_image /usr/libexec/ /usr/libexec/
################################################
# Run to build version file and validate image #
################################################
RUN ACTIONS_RUNNER_DEBUG=true WRITE_LINTER_VERSIONS_FILE=true IMAGE="${IMAGE}" /action/lib/linter.sh
2020-10-30 20:57:35 -04:00
2019-10-21 10:12:50 -04:00
######################
# Set the entrypoint #
######################
2019-10-25 16:56:04 -04:00
ENTRYPOINT ["/action/lib/linter.sh"]
################################################################################
# Grab small clean image to build standard ###############################
################################################################################
FROM slim as standard
###############
# Set up args #
###############
ARG GITHUB_TOKEN
ARG PWSH_VERSION='latest'
ARG PWSH_DIRECTORY='/usr/lib/microsoft/powershell'
ARG PSSA_VERSION='1.21.0'
################
# Set ENV vars #
################
ENV ARM_TTK_PSD1="/usr/lib/microsoft/arm-ttk/arm-ttk.psd1"
ENV IMAGE="standard"
ENV PATH="${PATH}:/var/cache/dotnet/tools:/usr/share/dotnet"
#########################
# Install dotenv-linter #
#########################
COPY --from=dotenv-linter /dotenv-linter /usr/bin/
###################################
# Install DotNet and Dependencies #
###################################
COPY scripts/install-dotnet.sh /
RUN /install-dotnet.sh && rm -rf /install-dotnet.sh
##############################
# Install rustfmt & clippy #
##############################
ENV CRYPTOGRAPHY_DONT_BUILD_RUST=1
COPY scripts/install-rustfmt.sh /
RUN /install-rustfmt.sh && rm -rf /install-rustfmt.sh
#########################################
# Install Powershell + PSScriptAnalyzer #
#########################################
COPY scripts/install-pwsh.sh /
RUN --mount=type=secret,id=GITHUB_TOKEN /install-pwsh.sh && rm -rf /install-pwsh.sh
#############################################################
# Install Azure Resource Manager Template Toolkit (arm-ttk) #
#############################################################
COPY scripts/install-arm-ttk.sh /
RUN --mount=type=secret,id=GITHUB_TOKEN /install-arm-ttk.sh && rm -rf /install-arm-ttk.sh
########################################################################################
# Run to build version file and validate image again because we installed more linters #
########################################################################################
RUN ACTIONS_RUNNER_DEBUG=true WRITE_LINTER_VERSIONS_FILE=true IMAGE="${IMAGE}" /action/lib/linter.sh