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 #
|
|
|
|
#########################################
|
2023-08-16 19:04:27 -04:00
|
|
|
FROM tenable/terrascan:1.18.3 as terrascan
|
2023-07-07 23:39:00 -04:00
|
|
|
FROM alpine/terragrunt:1.5.2 as terragrunt
|
2022-01-10 16:23:22 -05:00
|
|
|
FROM assignuser/chktex-alpine:v0.1.1 as chktex
|
2023-01-03 12:02:17 -05:00
|
|
|
FROM dotenvlinter/dotenv-linter:3.3.0 as dotenv-linter
|
2022-01-10 16:23:22 -05:00
|
|
|
FROM ghcr.io/awkbar-devops/clang-format:v1.0.2 as clang-format
|
2023-07-09 13:24:31 -04:00
|
|
|
FROM ghcr.io/terraform-linters/tflint-bundle:v0.47.0.0 as tflint
|
2023-08-18 18:16:16 -04:00
|
|
|
FROM ghcr.io/yannh/kubeconform:v0.6.3 as kubeconfrm
|
2023-08-16 19:03:42 -04:00
|
|
|
FROM golangci/golangci-lint:v1.54.1 as golangci-lint
|
2022-01-10 16:23:22 -05:00
|
|
|
FROM hadolint/hadolint:latest-alpine as dockerfile-lint
|
2023-08-11 18:19:46 -04:00
|
|
|
FROM hashicorp/terraform:1.5.5 as terraform
|
2023-01-03 21:45:59 -05:00
|
|
|
FROM koalaman/shellcheck:v0.9.0 as shellcheck
|
2023-05-24 16:36:14 -04:00
|
|
|
FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker
|
2023-06-27 13:49:10 -04:00
|
|
|
FROM mvdan/shfmt:v3.7.0 as shfmt
|
2023-06-19 14:29:22 -04:00
|
|
|
FROM rhysd/actionlint:1.6.25 as actionlint
|
2023-04-10 15:21:07 -04:00
|
|
|
FROM scalameta/scalafmt:v3.7.3 as scalafmt
|
2023-06-19 19:04:44 -04:00
|
|
|
FROM zricethezav/gitleaks:v8.17.0 as gitleaks
|
2023-08-17 11:11:09 -04:00
|
|
|
FROM yoheimuta/protolint:0.45.1 as protolint
|
2020-08-20 10:47:01 -04:00
|
|
|
|
2019-10-21 10:12:50 -04:00
|
|
|
##################
|
|
|
|
# Get base image #
|
|
|
|
##################
|
2023-06-21 18:42:31 -04:00
|
|
|
FROM python:3.11.4-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 #
|
|
|
|
################################
|
2022-09-28 09:45:01 -04:00
|
|
|
ARG CHECKSTYLE_VERSION='10.3.4'
|
2023-06-21 14:43:34 -04:00
|
|
|
ARG CLJ_KONDO_VERSION='2023.05.18'
|
2020-07-15 16:49:42 -04:00
|
|
|
# Dart Linter
|
|
|
|
## stable dart sdk: https://dart.dev/get-dart#release-channels
|
2023-01-03 23:23:18 -05:00
|
|
|
ARG DART_VERSION='2.8.4'
|
2022-09-28 09:45:01 -04:00
|
|
|
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)
|
2023-01-03 21:38:15 -05:00
|
|
|
ARG GLIBC_VERSION='2.34-r0'
|
2022-09-28 09:45:01 -04:00
|
|
|
ARG KTLINT_VERSION='0.47.1'
|
2022-01-10 16:23:22 -05:00
|
|
|
# PowerShell & PSScriptAnalyzer linter
|
2023-01-03 20:03:12 -05:00
|
|
|
ARG PSSA_VERSION='1.21.0'
|
2022-01-10 16:23:22 -05:00
|
|
|
ARG PWSH_DIRECTORY='/usr/lib/microsoft/powershell'
|
2023-01-03 20:03:12 -05:00
|
|
|
ARG PWSH_VERSION='v7.3.1'
|
2023-04-21 23:57:35 -04:00
|
|
|
# https://docs.docker.com/engine/reference/builder/#automatic-platform-args-in-the-global-scope
|
|
|
|
ARG TARGETARCH
|
2020-07-02 17:31:16 -04:00
|
|
|
|
2019-10-21 12:05:55 -04:00
|
|
|
####################
|
|
|
|
# Run APK installs #
|
|
|
|
####################
|
2020-10-06 10:24:39 -04:00
|
|
|
RUN apk add --no-cache \
|
2020-07-04 12:06:52 -04:00
|
|
|
bash \
|
2021-12-08 10:53:05 -05:00
|
|
|
ca-certificates \
|
2021-12-10 11:15:12 -05:00
|
|
|
cargo \
|
2023-08-11 16:40:04 -04:00
|
|
|
cmake \
|
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 \
|
2021-07-12 14:33:18 -04:00
|
|
|
g++ \
|
2022-01-10 16:23:22 -05:00
|
|
|
git git-lfs \
|
|
|
|
go \
|
2020-08-18 18:54:32 -04:00
|
|
|
gnupg \
|
2020-07-04 12:06:52 -04:00
|
|
|
icu-libs \
|
2021-07-26 13:45:46 -04:00
|
|
|
jpeg-dev \
|
2020-07-04 12:06:52 -04:00
|
|
|
jq \
|
2020-08-25 13:58:20 -04:00
|
|
|
krb5-libs \
|
2020-11-30 12:15:19 -05:00
|
|
|
libc-dev libcurl libffi-dev libgcc \
|
|
|
|
libintl libssl1.1 libstdc++ \
|
|
|
|
libxml2-dev libxml2-utils \
|
2020-09-08 04:02:44 -04:00
|
|
|
linux-headers \
|
2020-11-30 12:15:19 -05:00
|
|
|
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 \
|
2021-09-28 18:09:21 -04:00
|
|
|
openjdk11-jre \
|
2022-02-09 16:24:57 -05:00
|
|
|
openssh-client \
|
2021-02-17 08:32:40 -05:00
|
|
|
openssl-dev \
|
2020-08-07 08:58:40 -04:00
|
|
|
perl perl-dev \
|
2022-09-28 09:45:01 -04:00
|
|
|
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 \
|
2021-02-26 09:47:21 -05:00
|
|
|
rustup \
|
2020-10-24 06:16:37 -04:00
|
|
|
zlib zlib-dev
|
2020-08-20 10:44:11 -04:00
|
|
|
|
2020-07-03 18:37:17 -04:00
|
|
|
########################################
|
|
|
|
# Copy dependencies files to container #
|
|
|
|
########################################
|
|
|
|
COPY dependencies/* /
|
|
|
|
|
2023-03-11 09:46:57 -05:00
|
|
|
###################################################################
|
|
|
|
# Install Dependencies #
|
|
|
|
# The chown fixes broken uid/gid in ast-types-flow dependency #
|
2023-08-17 11:12:11 -04:00
|
|
|
# (see https://github.com/super-linter/super-linter/issues/3901) #
|
2023-03-11 09:46:57 -05:00
|
|
|
###################################################################
|
|
|
|
RUN npm install && chown -R "$(id -u)":"$(id -g)" node_modules && bundle install
|
2023-03-11 09:01:07 -05:00
|
|
|
|
2020-08-07 08:58:40 -04:00
|
|
|
##############################
|
|
|
|
# Installs Perl dependencies #
|
|
|
|
##############################
|
2022-09-28 09:45:01 -04:00
|
|
|
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
|
|
|
|
2022-01-06 12:04:10 -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/
|
2021-07-19 10:32:21 -04:00
|
|
|
COPY --from=tflint /root/.tflint.d /root/.tflint.d
|
2020-03-11 15:18:21 -04:00
|
|
|
|
2021-04-22 15:38:05 -04:00
|
|
|
#####################
|
2020-08-17 22:25:36 -04:00
|
|
|
# Install Terrascan #
|
2021-04-22 15:38:05 -04:00
|
|
|
#####################
|
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-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
|
|
|
##################
|
2021-04-22 15:38:05 -04:00
|
|
|
# Install chktex #
|
2020-06-21 03:59:18 -04:00
|
|
|
##################
|
2021-04-22 15:38:05 -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
|
|
|
|
2021-09-29 14:12:40 -04:00
|
|
|
########################
|
|
|
|
# Install clang-format #
|
|
|
|
########################
|
|
|
|
COPY --from=clang-format /usr/bin/clang-format /usr/bin/
|
|
|
|
|
2021-10-04 10:09:48 -04:00
|
|
|
####################
|
|
|
|
# Install GitLeaks #
|
|
|
|
####################
|
|
|
|
COPY --from=gitleaks /usr/bin/gitleaks /usr/bin/
|
|
|
|
|
2021-11-10 13:28:50 -05:00
|
|
|
####################
|
|
|
|
# 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/
|
|
|
|
|
2023-01-08 23:45:34 -05:00
|
|
|
######################
|
|
|
|
# Install kubeconform #
|
|
|
|
######################
|
|
|
|
COPY --from=kubeconfrm /kubeconform /usr/bin/
|
|
|
|
|
2021-07-12 14:33:18 -04:00
|
|
|
#################
|
2021-12-07 13:10:26 -05:00
|
|
|
# Install Lintr #
|
2021-07-12 14:33:18 -04:00
|
|
|
#################
|
2022-12-29 12:56:54 -05:00
|
|
|
COPY scripts/install-lintr.sh /
|
|
|
|
RUN /install-lintr.sh && rm -rf /install-lintr.sh
|
2021-07-12 14:33:18 -04:00
|
|
|
|
2023-06-21 14:43:34 -04:00
|
|
|
#####################
|
|
|
|
# Install clj-kondo #
|
|
|
|
#####################
|
|
|
|
COPY scripts/install-clj-kondo.sh /
|
|
|
|
RUN /install-clj-kondo.sh && rm -rf /install-clj-kondo.sh
|
|
|
|
|
2022-09-27 10:30:54 -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
|
|
|
|
|
2023-01-08 23:45:34 -05:00
|
|
|
##################
|
|
|
|
# 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
|
|
|
|
2023-04-22 18:54:41 -04:00
|
|
|
####################
|
|
|
|
# Install dart-sdk #
|
|
|
|
####################
|
|
|
|
COPY scripts/install-dart-sdk.sh /
|
|
|
|
RUN --mount=type=secret,id=GITHUB_TOKEN /install-dart-sdk.sh && rm -rf /install-dart-sdk.sh
|
|
|
|
|
|
|
|
################################
|
|
|
|
# Install Bash-Exec #
|
|
|
|
################################
|
|
|
|
COPY --chmod=555 scripts/bash-exec.sh /usr/bin/bash-exec
|
|
|
|
|
2020-08-25 13:58:20 -04:00
|
|
|
#################################################
|
|
|
|
# Install Raku and additional Edge dependencies #
|
|
|
|
#################################################
|
2023-04-22 18:54:41 -04:00
|
|
|
RUN apk add --no-cache rakudo zef
|
|
|
|
|
|
|
|
######################
|
|
|
|
# Install CheckStyle #
|
|
|
|
######################
|
|
|
|
COPY scripts/install-checkstyle.sh /
|
|
|
|
RUN --mount=type=secret,id=GITHUB_TOKEN /install-checkstyle.sh && rm -rf /install-checkstyle.sh
|
|
|
|
|
|
|
|
##############################
|
|
|
|
# Install google-java-format #
|
|
|
|
##############################
|
|
|
|
COPY scripts/install-google-java-format.sh /
|
|
|
|
RUN --mount=type=secret,id=GITHUB_TOKEN /install-google-java-format.sh && rm -rf /install-google-java-format.sh
|
|
|
|
|
|
|
|
#################################
|
|
|
|
# Install luacheck and luarocks #
|
|
|
|
#################################
|
|
|
|
COPY scripts/install-lua.sh /
|
|
|
|
RUN --mount=type=secret,id=GITHUB_TOKEN /install-lua.sh && rm -rf /install-lua.sh
|
2021-09-27 10:32:18 -04:00
|
|
|
|
2021-04-22 15:38:05 -04:00
|
|
|
################################################################################
|
2022-01-10 16:23:22 -05:00
|
|
|
# Grab small clean image to build python packages ##############################
|
|
|
|
################################################################################
|
2023-06-21 18:42:31 -04:00
|
|
|
FROM python:3.11.4-alpine3.17 as python_builder
|
2022-01-10 16:23:22 -05:00
|
|
|
RUN apk add --no-cache bash g++ git libffi-dev
|
|
|
|
COPY dependencies/python/ /stage
|
|
|
|
WORKDIR /stage
|
|
|
|
RUN ./build-venvs.sh
|
|
|
|
|
|
|
|
################################################################################
|
2022-12-23 20:25:04 -05:00
|
|
|
# Grab small clean image to build slim ###################################
|
2021-04-22 15:38:05 -04:00
|
|
|
################################################################################
|
2023-08-17 11:29:40 -04:00
|
|
|
FROM alpine:3.18.3 as slim
|
2020-07-24 13:27:54 -04:00
|
|
|
|
2021-04-22 15:38:05 -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)
|
2023-01-03 21:38:15 -05:00
|
|
|
ARG GLIBC_VERSION='2.34-r0'
|
2023-04-21 23:57:35 -04:00
|
|
|
# https://docs.docker.com/engine/reference/builder/#automatic-platform-args-in-the-global-scope
|
|
|
|
ARG TARGETARCH
|
2020-08-15 14:21:57 -04:00
|
|
|
|
2021-04-22 15:38:05 -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>" \
|
2023-08-17 11:12:11 -04:00
|
|
|
org.opencontainers.image.url="https://github.com/super-linter/super-linter" \
|
|
|
|
org.opencontainers.image.source="https://github.com/super-linter/super-linter" \
|
|
|
|
org.opencontainers.image.documentation="https://github.com/super-linter/super-linter" \
|
2021-04-22 15:38:05 -04:00
|
|
|
org.opencontainers.image.vendor="GitHub" \
|
|
|
|
org.opencontainers.image.description="Lint your code base with GitHub Actions"
|
2020-08-18 18:54:32 -04:00
|
|
|
|
2021-04-22 15:38:05 -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
|
2021-12-10 11:15:12 -05:00
|
|
|
ENV IMAGE="slim"
|
2020-09-21 18:53:30 -04:00
|
|
|
|
2022-09-27 10:30:54 -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
|
|
|
|
|
2022-12-29 12:56:54 -05:00
|
|
|
###############
|
|
|
|
# Install Git #
|
|
|
|
###############
|
|
|
|
RUN apk add --no-cache bash git git-lfs
|
|
|
|
|
|
|
|
##############################
|
|
|
|
# Install Phive dependencies #
|
|
|
|
##############################
|
|
|
|
COPY scripts/install-phive.sh /
|
2023-01-04 00:28:30 -05:00
|
|
|
RUN --mount=type=secret,id=GITHUB_TOKEN /install-phive.sh && rm -rf /install-phive.sh
|
2021-04-22 15:38:05 -04:00
|
|
|
|
2023-01-03 21:38:15 -05:00
|
|
|
####################################################
|
|
|
|
# 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'
|
|
|
|
|
2021-04-22 15:38:05 -04:00
|
|
|
#################################
|
|
|
|
# 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/
|
2022-03-14 10:23:47 -04:00
|
|
|
COPY --from=base_image /usr/local/include/ /usr/local/include/
|
2021-05-03 17:30:02 -04:00
|
|
|
COPY --from=base_image /usr/lib/ /usr/lib/
|
2021-04-22 15:38:05 -04:00
|
|
|
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/
|
2021-07-12 14:33:18 -04:00
|
|
|
COPY --from=base_image /home/r-library /home/r-library
|
2021-07-26 09:56:17 -04:00
|
|
|
COPY --from=base_image /root/.tflint.d/ /root/.tflint.d/
|
2022-01-10 16:23:22 -05:00
|
|
|
COPY --from=python_builder /venvs/ /venvs/
|
2021-04-22 15:38:05 -04:00
|
|
|
|
2022-05-26 10:04:20 -04:00
|
|
|
##################################
|
|
|
|
# Configure TFLint plugin folder #
|
|
|
|
##################################
|
|
|
|
ENV TFLINT_PLUGIN_DIR="/root/.tflint.d/plugins"
|
|
|
|
|
2021-04-22 15:38:05 -04:00
|
|
|
########################################
|
|
|
|
# Add node packages to path and dotnet #
|
|
|
|
########################################
|
2021-12-10 11:15:12 -05:00
|
|
|
ENV PATH="${PATH}:/node_modules/.bin"
|
2020-08-28 14:42:32 -04:00
|
|
|
|
2022-01-10 16:23:22 -05: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
|
|
|
|
2022-04-11 12:42:01 -04:00
|
|
|
################
|
|
|
|
# Pull in libs #
|
|
|
|
################
|
|
|
|
COPY --from=base_image /usr/libexec/ /usr/libexec/
|
|
|
|
|
2021-04-22 15:38:05 -04:00
|
|
|
################################################
|
|
|
|
# Run to build version file and validate image #
|
|
|
|
################################################
|
2021-12-10 11:15:12 -05:00
|
|
|
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"]
|
2021-12-10 11:15:12 -05:00
|
|
|
|
2022-01-10 16:23:22 -05:00
|
|
|
################################################################################
|
2022-12-23 20:25:04 -05:00
|
|
|
# Grab small clean image to build standard ###############################
|
2022-01-10 16:23:22 -05:00
|
|
|
################################################################################
|
2022-12-23 20:25:04 -05:00
|
|
|
FROM slim as standard
|
2021-12-10 11:15:12 -05:00
|
|
|
|
2022-01-10 16:23:22 -05:00
|
|
|
###############
|
|
|
|
# Set up args #
|
|
|
|
###############
|
2022-12-29 12:56:54 -05:00
|
|
|
ARG GITHUB_TOKEN
|
2021-12-10 11:15:12 -05:00
|
|
|
ARG PWSH_VERSION='latest'
|
|
|
|
ARG PWSH_DIRECTORY='/usr/lib/microsoft/powershell'
|
2023-01-03 20:23:38 -05:00
|
|
|
ARG PSSA_VERSION='1.21.0'
|
2023-04-22 21:13:01 -04:00
|
|
|
# https://docs.docker.com/engine/reference/builder/#automatic-platform-args-in-the-global-scope
|
|
|
|
ARG TARGETARCH
|
2021-12-10 11:15:12 -05:00
|
|
|
|
2022-01-10 16:23:22 -05:00
|
|
|
################
|
|
|
|
# Set ENV vars #
|
|
|
|
################
|
2023-01-03 23:18:52 -05:00
|
|
|
ENV ARM_TTK_PSD1="/usr/lib/microsoft/arm-ttk/arm-ttk.psd1"
|
2022-01-10 16:23:22 -05:00
|
|
|
ENV IMAGE="standard"
|
2021-12-10 11:15:12 -05:00
|
|
|
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 #
|
|
|
|
###################################
|
2022-12-29 12:56:54 -05:00
|
|
|
COPY scripts/install-dotnet.sh /
|
|
|
|
RUN /install-dotnet.sh && rm -rf /install-dotnet.sh
|
2021-12-10 11:15:12 -05:00
|
|
|
|
|
|
|
##############################
|
|
|
|
# Install rustfmt & clippy #
|
|
|
|
##############################
|
|
|
|
ENV CRYPTOGRAPHY_DONT_BUILD_RUST=1
|
2022-12-29 12:56:54 -05:00
|
|
|
COPY scripts/install-rustfmt.sh /
|
|
|
|
RUN /install-rustfmt.sh && rm -rf /install-rustfmt.sh
|
2021-12-10 11:15:12 -05:00
|
|
|
|
|
|
|
#########################################
|
|
|
|
# Install Powershell + PSScriptAnalyzer #
|
|
|
|
#########################################
|
2022-12-29 12:56:54 -05:00
|
|
|
COPY scripts/install-pwsh.sh /
|
2023-01-04 00:28:30 -05:00
|
|
|
RUN --mount=type=secret,id=GITHUB_TOKEN /install-pwsh.sh && rm -rf /install-pwsh.sh
|
2021-12-10 11:15:12 -05:00
|
|
|
|
|
|
|
#############################################################
|
|
|
|
# Install Azure Resource Manager Template Toolkit (arm-ttk) #
|
|
|
|
#############################################################
|
2022-12-29 12:56:54 -05:00
|
|
|
COPY scripts/install-arm-ttk.sh /
|
2023-01-04 00:28:30 -05:00
|
|
|
RUN --mount=type=secret,id=GITHUB_TOKEN /install-arm-ttk.sh && rm -rf /install-arm-ttk.sh
|
2021-12-10 11:15:12 -05:00
|
|
|
|
|
|
|
########################################################################################
|
|
|
|
# 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
|