Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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 |
|