c2ai / Dockerfile
Vinbor's picture
1st add
8107b3b verified
raw
history blame
No virus
237 Bytes
FROM python:3.11-slim
RUN apt update
RUN apt install git
RUN git clone https://github.com/NINOMAE1995/AI-PRO-to-OpenAI-API.git /app
WORKDIR "app"
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5005
CMD ["python", "app.py"]