forked from phoenix/litellm-mirror
Refactor Dockerfile and proxy_cli.py to use new secrets file location
This commit is contained in:
parent
0939302ae9
commit
07f06c6479
2 changed files with 3 additions and 4 deletions
|
@ -1,13 +1,13 @@
|
|||
FROM python:3.10
|
||||
|
||||
COPY . /app
|
||||
|
||||
WORKDIR /app
|
||||
RUN mkdir -p /root/.config/litellm/ && cp /app/secrets_template.toml /root/.config/litellm/secrets_template.toml
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
WORKDIR /app/litellm/proxy
|
||||
EXPOSE 8000
|
||||
ENTRYPOINT [ "/bin/bash", "/app/litellm/proxy/start.sh" ]
|
||||
ENTRYPOINT [ "python3", "proxy_cli.py" ]
|
||||
# TODO - Set up a GitHub Action to automatically create the Docker image,
|
||||
# and then we can quickly deploy the litellm proxy in the following way
|
||||
# `docker run -p 8000:8000 ghcr.io/BerriAI/litellm:v0.8.4 -v ./secrets_template.toml:/app/secrets_template.toml`
|
||||
# `docker run -p 8000:8000 ghcr.io/BerriAI/litellm:v0.8.4 -v ./secrets_template.toml:/root/.config/litellm/secrets_template.toml`
|
Loading…
Add table
Add a link
Reference in a new issue