File size: 289 Bytes
efde56b
884868c
 
 
 
efde56b
 
 
 
884868c
 
 
 
efde56b
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.10-slim

WORKDIR /app
COPY . .

# Make start.sh executable (HF needs this)
RUN chmod +x start.sh

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

EXPOSE 7860

# Start the server through start.sh (recommended for HF Spaces)
CMD ["bash", "start.sh"]