Hanuman2 commited on
Commit
4a903b7
·
verified ·
1 Parent(s): 742e467

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9-slim
2
+
3
+ WORKDIR /app
4
+ RUN pip install fastapi uvicorn httpx
5
+
6
+ COPY app.py .
7
+
8
+ # Hugging Face Spaces 7860 पोर्ट का उपयोग करता है
9
+ EXPOSE 7860
10
+
11
+ CMD ["python", "app.py"]