litellm/docker/Dockerfile.custom_ui

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.5 KiB
Docker
Raw Normal View History

2024-08-07 08:48:38 +08:00
# Use the provided base image
2024-08-07 09:42:08 +08:00
FROM ghcr.io/berriai/litellm:litellm_fwd_server_root_path-dev
2024-08-07 08:48:38 +08:00
# Set the working directory to /app
WORKDIR /app
# Install Node.js and npm (adjust version as needed)
2026-02-01 03:44:43 +08:00
RUN apt-get update && apt-get install -y nodejs npm && \
npm install -g npm@latest tar@latest
2024-08-07 08:48:38 +08:00
# Copy the UI source into the container
COPY ./ui/litellm-dashboard /app/ui/litellm-dashboard
# Set an environment variable for UI_BASE_PATH
# This can be overridden at build time
2024-08-07 09:42:08 +08:00
# set UI_BASE_PATH to "<your server root path>/ui"
ENV UI_BASE_PATH="/prod/ui"
2024-08-07 08:48:38 +08:00
# Build the UI with the specified UI_BASE_PATH
WORKDIR /app/ui/litellm-dashboard
RUN npm install
RUN UI_BASE_PATH=$UI_BASE_PATH npm run build
# Create the destination directory
RUN mkdir -p /app/litellm/proxy/_experimental/out
# Move the built files to the appropriate location
# Assuming the build output is in ./out directory
RUN rm -rf /app/litellm/proxy/_experimental/out/* && \
mv ./out/* /app/litellm/proxy/_experimental/out/
# Switch back to the main app directory
WORKDIR /app
# Make sure your docker/entrypoint.sh is executable
# Convert Windows line endings to Unix for entrypoint scripts
RUN sed -i 's/\r$//' docker/entrypoint.sh && chmod +x docker/entrypoint.sh
RUN sed -i 's/\r$//' docker/prod_entrypoint.sh && chmod +x docker/prod_entrypoint.sh
2024-08-07 08:48:38 +08:00
# Expose the necessary port
EXPOSE 4000/tcp
# Override the CMD instruction with your desired command and arguments
CMD ["--port", "4000", "--config", "config.yaml", "--detailed_debug"]