ssboost commited on
Commit
50069eb
ยท
verified ยท
1 Parent(s): 3e95a1f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -11,5 +11,5 @@ RUN pip install --no-cache-dir -r requirements.txt
11
  # ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜ ์ฝ”๋“œ ๋ณต์‚ฌ
12
  COPY . .
13
 
14
- # Gradio ์„œ๋ฒ„ ์‹คํ–‰
15
- CMD ["python", "app.py"]
 
11
  # ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜ ์ฝ”๋“œ ๋ณต์‚ฌ
12
  COPY . .
13
 
14
+ # FastAPI ์„œ๋ฒ„ ์‹คํ–‰
15
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7910"]