forked from phoenix/litellm-mirror
(feat) docker - allow user to specify base image
This commit is contained in:
parent
8c1a9f1c4e
commit
afc1b2209b
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
# Base image
|
# Base image
|
||||||
FROM python:3.9-slim
|
ARG LITELLM_BASE_IMAGE=python:3.9-slim
|
||||||
|
|
||||||
|
# allow users to specify, else use python 3.9-slim
|
||||||
|
FROM $LITELLM_BASE_IMAGE
|
||||||
|
|
||||||
# Set the working directory to /app
|
# Set the working directory to /app
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue