Files
android/.dockerignore
casjay 4744c06b43
Build and Push / build (push) Failing after 5s
🔧 add Docker build scaffolding and rootfs 🔧
- add Dockerfile, .dockerignore, .env.scripts, .gitattributes
- add .gitignore and Gitea workflow directory
- add rootfs/ overlay files

Dockerfile
.dockerignore
.env.scripts
.gitattributes
.gitea/
.gitignore
rootfs/
2026-09-17 20:52:44 -04:00

18 lines
446 B
Plaintext

# 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/**