Seicas commited on
Commit
6037623
·
verified ·
1 Parent(s): 028e993

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -4
Dockerfile CHANGED
@@ -11,10 +11,8 @@ RUN apt-get update && apt-get install -y \
11
 
12
  # Python bağımlılıklarını yükle
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 . .
 
11
 
12
  # Python bağımlılıklarını yükle
13
  COPY requirements.txt .
14
+ RUN pip install --no-cache-dir -r requirements.txt \
15
+ && python -m spacy download tr_core_news_md
 
 
16
 
17
  # Uygulama kodunu kopyala
18
  COPY . .