Update Dockerfile

This commit is contained in:
Ishaan Jaff 2023-12-02 14:56:12 -08:00 committed by GitHub
parent 25c141a9b7
commit 025e415ce0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,11 @@ FROM $LITELLM_BASE_IMAGE
# Set the working directory to /app
WORKDIR /app
# Install build dependencies
RUN apt-get update && \
apt-get install -y gcc python3-dev && \
rm -rf /var/lib/apt/lists/*
# Copy the current directory contents into the container at /app
COPY . /app