File size: 195 Bytes
2bb6eb6
1d5c264
2bb6eb6
1d5c264
2bb6eb6
1d5c264
2bb6eb6
1d5c264
2bb6eb6
1d5c264
2bb6eb6
1d5c264
2bb6eb6
1d5c264
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.9
#-slim

WORKDIR /app 

COPY requirements.txt ./ 

RUN pip install -r requirements.txt 

EXPOSE 7860

COPY . .

CMD ["python", "src/main.py", "--host", "0.0.0.0", "--port", "7860"]