engineportf commited on
Commit
25e90db
·
verified ·
1 Parent(s): 1bd9db9

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -0
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y \
6
+ build-essential \
7
+ libpq-dev \
8
+ && rm -rf /var/lib/apt/lists/*
9
+
10
+ COPY requirements-hf.txt .
11
+ RUN pip install --no-cache-dir -r requirements-hf.txt
12
+
13
+ COPY . .
14
+
15
+ EXPOSE 7860
16
+
17
+ CMD ["uvicorn", "hf_app:app", "--host", "0.0.0.0", "--port", "7860"]