Vinbor commited on
Commit
8107b3b
1 Parent(s): be9da4d
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+ RUN apt update
3
+ RUN apt install git
4
+ RUN git clone https://github.com/NINOMAE1995/AI-PRO-to-OpenAI-API.git /app
5
+ WORKDIR "app"
6
+
7
+ RUN pip install --no-cache-dir -r requirements.txt
8
+
9
+ EXPOSE 5005
10
+
11
+ CMD ["python", "app.py"]