🗃️ Removed the .claude/settings.local.json 🗃️

.dockerignore
.env.scripts
.gitattributes
.gitea/workflows/docker.yaml
.gitignore
LICENSE.md
README.md
rootfs/root/
rootfs/usr/local/bin/
This commit is contained in:
casjay
2026-05-12 20:09:24 -04:00
parent 8740089da2
commit 40d7f3aa08
17 changed files with 1547 additions and 771 deletions

17
.dockerignore Normal file
View File

@@ -0,0 +1,17 @@
# Files to ignore
# Tell docker to ignore .gitkeep
.gitkeep
# Tell docker to ignore .gitignore
.gitignore
# Tell docker to ignore node_modules/**
node_modules/**
# Tell docker to ignore .node_modules/**
.node_modules/**
# Tell docker to ignore **/.gitkeep
**/.gitkeep
# Tell docker to ignore **/.gitignore
**/.gitignore
# Tell docker to ignore **/node_modules/**
**/node_modules/**
# Tell docker to ignore **/.node_modules/**
**/.node_modules/**