forked from phoenix/litellm-mirror
Update Dockerfile
This commit is contained in:
parent
57df87120a
commit
f742d14582
1 changed files with 8 additions and 2 deletions
10
Dockerfile
10
Dockerfile
|
@ -1,8 +1,14 @@
|
|||
# Base image
|
||||
FROM python:3.9-slim
|
||||
|
||||
# Install the project dependencies
|
||||
RUN pip install -r /app/litellm/requirements.txt
|
||||
# Set the working directory to /app
|
||||
WORKDIR /app
|
||||
|
||||
# Copy the current directory contents into the container at /app
|
||||
COPY . /app
|
||||
|
||||
# Install any needed packages specified in requirements.txt
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
EXPOSE 4000/tcp
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue