saeedzou commited on
Commit
eb5cd7b
·
verified ·
1 Parent(s): 843c6fc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -15,7 +15,7 @@ RUN git clone https://github.com/saeedzou/ParsNorm.git \
15
  && cd ParsNorm \
16
  && pip install -e . \
17
  && pip install -r requirements.txt \
18
- && pip install fastapi uvicorn
19
 
20
  # Create a writable directory for nltk_data
21
  RUN mkdir -p /app/nltk_data
@@ -28,6 +28,7 @@ RUN python -m nltk.downloader -d /app/nltk_data cmudict
28
  ENV NLTK_DATA=/app/nltk_data
29
 
30
  COPY pos_tagger.model .
 
31
 
32
  # Copy your Python script into the container
33
  COPY phonemizer.py .
 
15
  && cd ParsNorm \
16
  && pip install -e . \
17
  && pip install -r requirements.txt \
18
+ && pip install fastapi uvicorn pandas
19
 
20
  # Create a writable directory for nltk_data
21
  RUN mkdir -p /app/nltk_data
 
28
  ENV NLTK_DATA=/app/nltk_data
29
 
30
  COPY pos_tagger.model .
31
+ COPY final_map_words.csv .
32
 
33
  # Copy your Python script into the container
34
  COPY phonemizer.py .