45 lines
880 B
Docker
45 lines
880 B
Docker
# =====================================================================
|
|
# .dockerignore cho RobotNet10.FleetManager
|
|
# Build context: srcs/RobotNet10/
|
|
# File này được Docker BuildKit tự động nhận khi dùng:
|
|
# docker build -f FleetManager/Dockerfile ...
|
|
# =====================================================================
|
|
|
|
# Build outputs (không cần thiết, làm tăng kích thước context)
|
|
**/bin/
|
|
**/obj/
|
|
|
|
# Visual Studio artifacts
|
|
**/.vs/
|
|
**/*.user
|
|
**/*.suo
|
|
**/.idea/
|
|
|
|
# Logs
|
|
**/logs/
|
|
**/*.log
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Không cần RobotApp khi build FleetManager
|
|
RobotApp/
|
|
|
|
# Không cần Tests
|
|
Tests/
|
|
|
|
# Docs và scripts nếu có
|
|
**/docs/
|
|
**/*.md
|
|
**/Documents/
|
|
|
|
# Node modules (nếu có)
|
|
**/node_modules/
|
|
|
|
# User secrets (không nên đưa vào image)
|
|
**/secrets.json
|
|
**/*.pfx
|
|
**/*.p12
|