File size: 204 Bytes
9684b82
6a13310
 
 
9684b82
 
6a13310
 
9684b82
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.10

WORKDIR /app

# Install dependencies
COPY requirements.txt .
RUN pip install -r requirements.txt

# Copy app files
COPY . .

# Expose port & run app
EXPOSE 7860
CMD ["python", "app.py"]