grosenthal commited on
Commit
cdb7e02
·
1 Parent(s): ef9f0a7
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -15,4 +15,7 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
15
 
16
  COPY . .
17
  RUN python -c "from cltk.data.fetch import FetchCorpus; corpus_downloader = FetchCorpus(language='lat');corpus_downloader.import_corpus('lat_models_cltk')"
 
 
 
18
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
15
 
16
  COPY . .
17
  RUN python -c "from cltk.data.fetch import FetchCorpus; corpus_downloader = FetchCorpus(language='lat');corpus_downloader.import_corpus('lat_models_cltk')"
18
+
19
+ RUN chmod -R 777 bin/words
20
+
21
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]