File size: 420 Bytes
a884613
2f9be48
 
a884613
 
 
 
2f9be48
 
a884613
 
2f9be48
a884613
 
2f9be48
 
a884613
 
2f9be48
a884613
2f9be48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Use a lightweight Python image
FROM python:3.10-slim

# Install system dependencies for OpenCV
RUN apt-get update && apt-get install -y libgl1 libglib2.0-0

# Set working directory
WORKDIR /app

# Copy app files
COPY app/ ./app/
COPY requirements.txt .

# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt

# Expose port
EXPOSE 7860

# Command to run the app
CMD ["python", "app/main.py"]