Initial commit of new flow

This commit is contained in:
Smaug123
2023-09-10 21:21:51 +01:00
commit a1072f203d
28 changed files with 701 additions and 0 deletions

9
lint.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
OUTPUT="$(pwd)/public"
export OUTPUT
docker build docker/html -t build-html || exit 1
echo Validating HTML.
docker run --user "$(id -u):$(id -g)" -v "$OUTPUT:/public" build-html sh -c "/build.sh" || exit 1