HK0712 commited on
Commit
a1be075
·
1 Parent(s): 7111ecb
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -31,6 +31,8 @@ COPY requirements.txt .
31
  RUN pip install --upgrade pip
32
  RUN pip install --no-cache-dir -r requirements.txt
33
 
 
 
34
  # 5. 將專案中的所有其他檔案複製到容器中
35
  COPY . .
36
 
 
31
  RUN pip install --upgrade pip
32
  RUN pip install --no-cache-dir -r requirements.txt
33
 
34
+ RUN python -c "import pyopenjtalk; pyopenjtalk.g2p('test')"
35
+
36
  # 5. 將專案中的所有其他檔案複製到容器中
37
  COPY . .
38