Added Dockerfile

This commit is contained in:
2026-01-15 15:08:33 +06:00
parent 8edd7131a2
commit 9a1e2df04d
7 changed files with 770 additions and 1 deletions

79
.dockerignore Normal file
View File

@@ -0,0 +1,79 @@
# Git
.git
.gitignore
.gitattributes
# CI/CD
.drone.yml
.github
# Documentation
*.md
!README.md
CHANGELOG.md
LICENSE
# IDE
.vscode
.idea
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Node
frontend/node_modules
frontend/dist
frontend/.vite
frontend/npm-debug.log*
frontend/yarn-debug.log*
frontend/yarn-error.log*
# Python
backend/__pycache__
backend/*.pyc
backend/*.pyo
backend/*.pyd
backend/.Python
backend/env
backend/venv
backend/.venv
backend/pip-log.txt
backend/pip-delete-this-directory.txt
backend/.pytest_cache
backend/.coverage
backend/htmlcov
# Data (будет монтироваться как volume)
backend/servers/*
backend/users.json
backend/tickets.json
# Logs
*.log
logs
# Environment
.env
.env.local
.env.*.local
# Docker
docker-compose.yml
docker-compose.*.yml
Dockerfile
.dockerignore
# Tests
tests
test
*.test.js
*.spec.js
# Build artifacts
build
dist
*.egg-info