현진_앱 파일 복사 추가
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -19,6 +19,9 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
19 |
|
20 |
# 앱 파일 복사
|
21 |
COPY app.py .
|
|
|
|
|
|
|
22 |
|
23 |
# FastAPI 서버 실행
|
24 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
19 |
|
20 |
# 앱 파일 복사
|
21 |
COPY app.py .
|
22 |
+
COPY emotion_bert_model.pth .
|
23 |
+
COPY tfidf_vectorizer.pkl .
|
24 |
+
COPY xgboost_model.pkl .
|
25 |
|
26 |
# FastAPI 서버 실행
|
27 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|