Alshargi commited on
Commit
5a7ff52
·
verified ·
1 Parent(s): 201efcd

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +20 -0
Dockerfile ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y --no-install-recommends \
6
+ git \
7
+ && rm -rf /var/lib/apt/lists/*
8
+
9
+ COPY requirements.txt .
10
+ RUN pip install --no-cache-dir -r requirements.txt
11
+
12
+ COPY . .
13
+
14
+ ENV HADITH_INDEX_PATH=hadith_ar.faiss
15
+ ENV HADITH_META_PATH=hadith_meta.parquet
16
+ ENV HADITH_MODEL_NAME=intfloat/multilingual-e5-base
17
+
18
+ EXPOSE 7860
19
+
20
+ CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app", "--timeout", "180"]