abhijit2k01 commited on
Commit
045f763
·
verified ·
1 Parent(s): 7efc477

Dockerfile updated according to requirements.

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -2,7 +2,8 @@ FROM python:3.9
2
 
3
  WORKDIR /code
4
 
5
- RUN pip install vllm fastapi uvicorn
 
6
 
7
  COPY ./app /code/app
8
 
 
2
 
3
  WORKDIR /code
4
 
5
+ COPY ./requirements.txt /code/requirements.txt
6
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
7
 
8
  COPY ./app /code/app
9