mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
- 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.
49 lines
401 B
Plaintext
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
|