Skip to content
Merged
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
10 changes: 9 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ jobs:
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=latest
labels: |
org.opencontainers.image.description=OptiLLM proxy-only image for API routing without model serving capabilities

# Build and push proxy image
- name: Build and push proxy_only Docker image
Expand All @@ -74,6 +76,8 @@ jobs:
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta-proxy.outputs.tags }}
labels: ${{ steps.meta-proxy.outputs.labels }}
annotations: |
org.opencontainers.image.description=OptiLLM proxy-only image for API routing without model serving capabilities
cache-from: type=gha,scope=proxy
cache-to: type=gha,scope=proxy,mode=max

Expand All @@ -96,7 +100,9 @@ jobs:
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
latest

labels: |
org.opencontainers.image.description=OptiLLM full image with model serving and API routing capabilities

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
Expand All @@ -105,5 +111,7 @@ jobs:
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
annotations: |
org.opencontainers.image.description=OptiLLM full image with model serving amd API routing capabilities
cache-from: type=gha
cache-to: type=gha,mode=max