[linkcheck] Initial commit

This commit is contained in:
drymer 2019-01-29 21:02:18 +01:00
parent 3d128b3343
commit 526aea14b8
Signed by: drymer
GPG Key ID: A307D64D5DDFDAAD
2 changed files with 12 additions and 0 deletions

5
linkcheck/Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM google/dart as production
RUN git clone https://github.com/filiph/linkcheck/ /linkcheck && pub global \
activate linkcheck
ENTRYPOINT ["/root/.pub-cache/bin/linkcheck"]

7
linkcheck/README.md Normal file
View File

@ -0,0 +1,7 @@
# linkcheck
A simple broken link checker. It's pretty fast and only returns the broken links:
``` bash
docker run -ti registry.daemons.it/linkcheck http://whatever
```