Seungwoo hong commited on
Commit
cc5556d
ยท
1 Parent(s): 30d7adf

๐Ÿš‘ fix: update Dockerfile CMD to use AutoRAG execution command instead of previous command

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -4
Dockerfile CHANGED
@@ -12,8 +12,7 @@ WORKDIR /app
12
  COPY --chown=user ./requirements.txt requirements.txt
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
-
16
- # ๋„์ปค ์‹คํ–‰
17
-
18
  COPY --chown=user . /app
19
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
 
12
  COPY --chown=user ./requirements.txt requirements.txt
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
 
 
 
15
  COPY --chown=user . /app
16
+
17
+ # AutoRAG ์‹คํ–‰ ๋ช…๋ น์–ด๋ฅผ CMD๋กœ ๋ณ€๊ฒฝ
18
+ CMD ["autorag", "run_web", "--trial_path", "./projects/tutorial_1/0", "--port", "7860"]