File size: 255 Bytes
77a458b
 
 
 
ac1a0e2
77a458b
 
 
 
 
 
 
eb41c0a
77a458b
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.11-slim

RUN apt-get update && apt-get install -y git

RUN git clone https://github.com/renqabs/chat2api.git /app

WORKDIR /app

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

EXPOSE 5005

ENV API_PREFIX="yyds"

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