26 lines
653 B
Plaintext
26 lines
653 B
Plaintext
---
|
|
description:
|
|
globs:
|
|
alwaysApply: false
|
|
---
|
|
# Deployment Configuration
|
|
|
|
The project includes Docker configuration for containerized deployment:
|
|
|
|
- [Dockerfile](mdc:Dockerfile): Container definition for the application
|
|
- [docker-compose.yml](mdc:docker-compose.yml): Multi-container deployment configuration
|
|
|
|
The application can be built and deployed using:
|
|
|
|
```bash
|
|
# Build and run with Docker Compose
|
|
docker-compose up -d
|
|
|
|
# Build Docker image directly
|
|
docker build -t document_ai .
|
|
docker run -p 8080:8080 document_ai
|
|
```
|
|
|
|
The project also includes CI/CD configuration:
|
|
- [.gitlab-ci.yml](mdc:.gitlab-ci.yml): GitLab CI/CD pipeline configuration
|