pvanand commited on
Commit
2f785ac
·
verified ·
1 Parent(s): 39ccb16

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -11,7 +11,7 @@ COPY . /app
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
  # Create a directory for NLTK data
14
- RUN mkdir -p /nltk_data && chmod -R 755 /nltk_data
15
 
16
  # Download NLTK data
17
  RUN python -m nltk.downloader stopwords punkt
 
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
  # Create a directory for NLTK data
14
+ RUN mkdir -p app/nltk_data && chmod -R 755 app/nltk_data
15
 
16
  # Download NLTK data
17
  RUN python -m nltk.downloader stopwords punkt