superlint/Dockerfile
Lucas Gravley 9967630273 adding it
2019-10-21 11:05:55 -05:00

69 lines
1.8 KiB
Docker

###########################################
###########################################
## 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" \
com.github.actions.icon="code" \
com.github.actions.color="red" \
maintainer="GitHub DevOps <github_devops@github.com>"
####################
# Run APK installs #
####################
RUN apk add --no-cache \
bash git musl-dev curl gcc cabal \
npm nodejs \
libxml2-utils \
ruby ruby-bundler \
py3-setuptools
####################
# Run Pip installs #
####################
RUN pip install --upgrade --no-cache-dir \
pip ansible-lint
#####################
# Run Pip3 Installs #
#####################
RUN pip3 install --upgrade --no-cache-dir \
yamllint pylint
####################
# Run NPM Installs #
####################
RUN npm -g install markdownlint-cli jsonlint prettyjson
######################
# Run Cabal installs #
######################
RUN cabal update \
&& cabal install ShellCheck
###########################################
# Load GitHub Env Vars for Github Actions #
###########################################
ENV GITHUB_SHA=${GITHUB_SHA}
ENV GITHUB_EVENT_PATH=${GITHUB_EVENT_PATH}
ENV GITHUB_WORKSPACE=${GITHUB_WORKSPACE}
###########################
# Copy files to container #
###########################
COPY lib /action/lib
######################
# Set the entrypoint #
######################
ENTRYPOINT ["/action/lib/entrypoint.sh"]