Seicas commited on
Commit
7191c58
·
verified ·
1 Parent(s): 41315bf

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -13,6 +13,9 @@ RUN apt-get update && apt-get install -y \
13
  COPY requirements.txt .
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
 
 
 
16
  # Uygulama kodunu kopyala
17
  COPY . .
18
 
 
13
  COPY requirements.txt .
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
16
+ # SpaCy Türkçe modelini yükle
17
+ RUN python -m spacy download tr_core_news_md
18
+
19
  # Uygulama kodunu kopyala
20
  COPY . .
21