Initial commit

This commit is contained in:
Alessio
2024-11-17 19:37:57 -08:00
commit 4af0e05c8d
10 changed files with 279 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
from alpine:3.20
run apk add sqlite
copy entrypoint.sh /
copy lints.sql /
run chmod +x /entrypoint.sh
entrypoint ["/entrypoint.sh"]