colibri.litellm2 / Dockerfile
reztilop's picture
Update Dockerfile
eaff0d6 verified
raw
history blame contribute delete
616 Bytes
# Use the provided base image
FROM ghcr.io/berriai/litellm:main-latest
# Set the working directory to /app
WORKDIR /app
# Copy the configuration file into the container at /app
COPY config.yaml .
# Make sure your docker/entrypoint.sh is executable
RUN chmod +x ./docker/entrypoint.sh
# Expose the necessary port
EXPOSE 7860/tcp
# Override the CMD instruction with your desired command and arguments
# WARNING: FOR PROD DO NOT USE `--detailed_debug` it slows down response times, instead use the following CMD
# CMD ["--port", "7860", "--config", "config.yaml"]
CMD ["--port", "7860", "--config", "config.yaml"]