wchynto commited on
Commit
b4ddf7f
1 Parent(s): e2d5ce2

update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -4,7 +4,7 @@ WORKDIR /python-docker
4
 
5
  COPY requirements.txt requirements.txt
6
  RUN pip install -r requirements.txt
7
-
8
  COPY . .
9
 
10
- CMD [ "python", "-m" , "flask", "run", "--host=0.0.0.0"]
 
4
 
5
  COPY requirements.txt requirements.txt
6
  RUN pip install -r requirements.txt
7
+ RUN mkdir -p /nltk_data && chmod -R 777 /nltk_data
8
  COPY . .
9
 
10
+ CMD [ "python", "-m" , "flask", "run", "--host=0.0.0.0"]