thechaiexperiment commited on
Commit
e48e5e1
·
1 Parent(s): 1c3eaab

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -11,6 +11,9 @@ RUN apt-get update && apt-get install -y \
11
  COPY requirements.txt .
12
  RUN pip install --no-cache-dir -r requirements.txt
13
 
 
 
 
14
  # Copy your code and models
15
  COPY . .
16
 
 
11
  COPY requirements.txt .
12
  RUN pip install --no-cache-dir -r requirements.txt
13
 
14
+ # Download punkt data for NLTK
15
+ RUN python -c "import nltk; nltk.download('punkt')"
16
+
17
  # Copy your code and models
18
  COPY . .
19