Files
crawlab/backend/.dockerignore
Marvin Zhang 83b81c8353 chore: update Docker configuration and ignore files
- Updated .dockerignore to exclude temporary files, Git directories, and Node modules.
- Modified Dockerfile to copy required modules from the parent directory and build the Go application from the backend directory.
2024-12-20 12:10:23 +08:00

49 lines
401 B
Plaintext

# Go build artifacts
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
# Go workspace file
go.work
# IDE directories
.idea/
.vscode/
# Dependencies
vendor/
# Build output
bin/
dist/
# Debug files
debug/
# Environment files
.env
*.env
# System files
.DS_Store
Thumbs.db
# Test coverage
coverage.txt
*.cover
# Temporary files
*.tmp
*~
**/tmp
# Git directories
.git/
# Node modules
**/node_modules