Update Dockerfile

This commit is contained in:
Cameron 2023-12-06 09:21:00 +10:00 committed by GitHub
parent 3fc9272640
commit c99466bc25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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