Spaces:
Sleeping
Sleeping
update Dockerfile
Browse files- 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"]
|