Skip to content
Snippets Groups Projects
Unverified Commit 1cb6dcb4 authored by Alexander Grund's avatar Alexander Grund
Browse files

Remove unused docker files

parent d307222a
No related branches found
No related tags found
3 merge requests!322Merge preview into main,!319Merge preview into main,!137Fix linter
FROM debian:buster
###############
# Linkchecker #
###############
RUN apt update && apt install -y linkchecker
WORKDIR /src/linkchecker
ENTRYPOINT ["/usr/bin/linkchecker"]
CMD ["--help"]
FROM webpage:base
##########
# Linter #
##########
RUN apt update && apt install -y nodejs npm
RUN npm install -g markdownlint-cli
WORKDIR /src/linter
ENTRYPOINT ["/usr/local/bin/markdownlint"]
CMD ["--help"]
{
"default": false,
"first-heading-h1": true,
"header-increment": true,
"heading-style": { "style": "atx" },
"no-missing-space-atx": true,
"no-multiple-space-atx": true,
"blanks-around-headings": true,
"no-emphasis-as-heading": true,
"first-line-heading": true,
"single-title": true,
"no-empty-links": true,
"no-alt-text": true,
"no-multiple-blanks": true,
"single-trailing-newline": true,
"blanks-around-fences": true,
"blanks-around-lists": true,
"commands-show-output": true,
"line-length": { "line_length": 100, "code_blocks": false, "tables": false}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment