From c99466bc25a63c9e5bbc8571fe9cdb93f9401235 Mon Sep 17 00:00:00 2001 From: Cameron <561860+wallies@users.noreply.github.com> Date: Wed, 6 Dec 2023 09:21:00 +1000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e29fe4269..aa7964fca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ # Base image -ARG LITELLM_BASE_IMAGE=python:3.9 +ARG LITELLM_BUILD_IMAGE=python:3.9 # Runtime image ARG LITELLM_RUNTIME_IMAGE=python:3.9-slim # allow users to specify, else use python 3.9 -FROM $LITELLM_BASE_IMAGE as builder +FROM $LITELLM_BUILD_IMAGE as builder # Set the working directory to /app WORKDIR /app