forked from phoenix/litellm-mirror
(feat) proxy: docker - use wheels for builds
This commit is contained in:
parent
3b2bbc757e
commit
f565e6249d
1 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,8 @@ WORKDIR /app
|
|||
COPY . /app
|
||||
|
||||
# Install any needed packages specified in requirements.txt
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
RUN pip wheel --no-cache-dir --wheel-dir=wheels -r requirements.txt
|
||||
RUN pip install --no-cache-dir --find-links=wheels -r requirements.txt
|
||||
|
||||
EXPOSE 4000/tcp
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue