pluto90 commited on
Commit
793fabc
·
verified ·
1 Parent(s): d1659e5

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ WORKDIR /
4
+
5
+ # Install system deps
6
+ RUN apt-get update && apt-get install -y \
7
+ libgl1 \
8
+ && rm -rf /var/lib/apt/lists/*
9
+
10
+ COPY . .
11
+
12
+ RUN pip install --no-cache-dir -r requirements.txt
13
+
14
+ # HF expects app on port 7860
15
+ CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]