- Add main Dockerfile for production builds - Add Dockerfile.runtime for secure code execution - Add Dockerfile.runtime.fixed with improved configuration - Include .dockerignore for build optimization - Add integration documentation and publishing guides - Update API and CLI components for better runtime support - Enhance sandbox and container management features
49 lines
376 B
Plaintext
49 lines
376 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
dist/
|
|
tmp/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Build
|
|
build/
|
|
out/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Docker
|
|
.dockerignore
|
|
Dockerfile*
|
|
|
|
# Misc
|
|
.cache/
|
|
.nx/ |