소스 검색

Docker File Update

Benjamin Harris 1 개월 전
부모
커밋
a4799cf21a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      services/ai_grammar_correction/dockerfile

+ 2 - 2
services/ai_grammar_correction/dockerfile

@@ -7,7 +7,7 @@ COPY . /services/grammar_correction
 WORKDIR /services/grammar_correction
 
 # Install dependencies
-RUN python -m pip install pika --upgrade
-RUN pip install happytransformer
+RUN pip install --upgrade pip && \
+    pip install pika happytransformer
 
 CMD ["python", "app.py"]