rr1 commited on
Commit
0ea1681
·
verified ·
1 Parent(s): 8ff0aa9

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ RUN apt-get update && apt-get install -y git
4
+
5
+ RUN git clone https://github.com/CrisRain/OnDemand-API-Proxy.git /app
6
+
7
+ WORKDIR /app
8
+
9
+ RUN pip install --no-cache-dir -r requirements.txt
10
+
11
+ CMD ["python", "app.py"]