Gosse Minnema commited on
Commit
77a4c7a
·
1 Parent(s): d9fa795

Add NLTK folder, set folder permissions

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -1,7 +1,9 @@
1
  FROM python:3.9
2
  WORKDIR /app
3
  ADD . /app
4
-
 
 
5
  # solves this issue https://github.com/marcotcr/checklist/issues/144
6
  RUN pip install "notebook==6.0.1"
7
  RUN pip install "checklist==0.0.11"
 
1
  FROM python:3.9
2
  WORKDIR /app
3
  ADD . /app
4
+ RUN chmod -R 777 /app
5
+ RUN mkdir /nltk_data
6
+ RUN chmod -R 777 /nltk_data
7
  # solves this issue https://github.com/marcotcr/checklist/issues/144
8
  RUN pip install "notebook==6.0.1"
9
  RUN pip install "checklist==0.0.11"