From 3fc9272640800186792c7ca3dd03cf0b8b915a36 Mon Sep 17 00:00:00 2001 From: Cam Parry Date: Wed, 6 Dec 2023 08:55:53 +1000 Subject: [PATCH] fix: theNav hrefs --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ea94febdd..e29fe4269 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ # Base image ARG LITELLM_BASE_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 @@ -25,9 +28,6 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH" RUN pip install --no-cache-dir -r /app/requirements.txt ############################################################################### -# Runtime image -ARG LITELLM_RUNTIME_IMAGE=python:3.9-slim - FROM $LITELLM_RUNTIME_IMAGE as runtime WORKDIR /app