Update Dockerfile

This commit is contained in:
Ishaan Jaff 2023-11-30 09:03:04 -08:00 committed by GitHub
parent 57df87120a
commit f742d14582
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,14 @@
# Base image
FROM python:3.9-slim
# Install the project dependencies
RUN pip install -r /app/litellm/requirements.txt
# Set the working directory to /app
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . /app
# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 4000/tcp