mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-24 18:24:20 +00:00
(feat) update dockerfile
This commit is contained in:
parent
213b345a43
commit
38c1ee2349
1 changed files with 16 additions and 0 deletions
16
Dockerfile
Normal file
16
Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
|||
# Base image
|
||||
FROM python:3.9-slim
|
||||
|
||||
# Set the working directory
|
||||
WORKDIR /app
|
||||
|
||||
# Copy the project files to the working directory
|
||||
COPY . /app
|
||||
|
||||
# Install the project dependencies
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
WORKDIR /app/litellm/proxy
|
||||
|
||||
# Set the command to run when the container starts
|
||||
CMD python3 proxy_cli.py --config hosted_config.yaml --port 4000
|
Loading…
Add table
Add a link
Reference in a new issue