ch2a / Dockerfile
yxmnjxzx's picture
Update Dockerfile
2f5cc34 verified
raw
history blame
No virus
351 Bytes
FROM python:3.11
RUN apt update
RUN apt install git
RUN git clone https://github.com/lanqian528/chat2api.git /app
WORKDIR "app"
RUN mkdir -p /app/data
RUN chmod -R 777 /app/data
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install python-multipart
EXPOSE 5005
ENV API_PREFIX="nai"
CMD ["python", "app.py", "--host", "0.0.0.0:5005"]