dpv007 commited on
Commit
08f1345
·
verified ·
1 Parent(s): f961ffa

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +18 -0
Dockerfile ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ WORKDIR /code
4
+
5
+ # Install dependencies
6
+ COPY requirements.txt .
7
+ RUN pip install --no-cache-dir -r requirements.txt
8
+
9
+ # Copy the rest of the app
10
+ COPY . .
11
+
12
+ # HF will inject PORT, but we set a default
13
+ ENV PORT=7860
14
+
15
+ EXPOSE 7860
16
+
17
+ # Use $PORT from the environment (Spaces sets it)
18
+ CMD ["sh", "-c", "uvicorn main:app --host 0.0.0.0 --port ${PORT}"]