File size: 176 Bytes
ba39547
 
4fbd64c
 
 
ba39547
83efa43
4fbd64c
ba39547
 
78d5e08
ba39547
83efa43
b8a6e1f
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Dockerfile
FROM python:3.11-slim

WORKDIR /app

COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt

COPY . .

EXPOSE 7860

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