File size: 245 Bytes
de9a060
8107b3b
 
de9a060
8107b3b
 
 
 
 
 
eb8af4c
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.11
RUN apt update 
RUN apt install git
RUN git clone https://github.com/lanqian528/chat2api.git /app
WORKDIR "app"

RUN pip install --no-cache-dir -r requirements.txt

EXPOSE 5005

CMD ["python", "app.py", "--host", "0.0.0.0:5005"]