Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
LABEL org.opencontainers.image.description="OptiLLM full image with model serving and API routing capabilities"
LABEL org.opencontainers.image.licenses=Apache-2.0

# Build stage
FROM python:3.12-slim AS builder

Expand Down Expand Up @@ -30,6 +26,11 @@ RUN pip install --no-cache-dir -r requirements.txt
# Final stage
FROM python:3.12-slim

# Add labels for the final image
LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
LABEL org.opencontainers.image.description="OptiLLM full image with model serving and API routing capabilities"
LABEL org.opencontainers.image.licenses=Apache-2.0

# Install curl for the healthcheck
RUN apt-get update && apt-get install -y --no-install-recommends \
curl && \
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="optillm",
version="0.0.32",
version="0.0.33",
packages=find_packages(),
py_modules=['optillm'],
package_data={
Expand Down