Yuchan5386 commited on
Commit
d806b1d
·
verified ·
1 Parent(s): 9d96939

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -7,7 +7,7 @@ WORKDIR /app
7
  COPY . .
8
 
9
  # 필요한 패키지 설치
10
- RUN pip install --no-cache-dir fastapi uvicorn
11
 
12
  # FastAPI 서버 실행
13
  CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]
 
7
  COPY . .
8
 
9
  # 필요한 패키지 설치
10
+ RUN pip install fastapi, tensorflow, numpy, requests
11
 
12
  # FastAPI 서버 실행
13
  CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]