File size: 237 Bytes
572a4c2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.10

WORKDIR /app

# Install Python deps first
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Copy app code
COPY . /app

ENV PORT=7860
EXPOSE 7860

CMD ["python", "app.py"]