(feat) docker - allow user to specify base image

This commit is contained in:
ishaan-jaff 2023-11-30 14:49:21 -08:00
parent 8c1a9f1c4e
commit afc1b2209b

View file

@ -1,5 +1,8 @@
# 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
WORKDIR /app