Skip to content

Commit 11d6e6d

Browse files
authored
Merge pull request #145 from codelion/codelion-patch-1
Fix dockerfile labels
2 parents de99dac + fde8136 commit 11d6e6d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@ jobs:
6363
type=semver,pattern={{version}}
6464
type=semver,pattern={{major}}.{{minor}}
6565
type=raw,value=latest
66-
labels: |
67-
org.opencontainers.image.description=OptiLLM proxy-only image for API routing without model serving capabilities
68-
66+
6967
# Build and push proxy image
7068
- name: Build and push proxy_only Docker image
7169
uses: docker/build-push-action@v5
@@ -76,8 +74,6 @@ jobs:
7674
platforms: linux/amd64,linux/arm64
7775
tags: ${{ steps.meta-proxy.outputs.tags }}
7876
labels: ${{ steps.meta-proxy.outputs.labels }}
79-
annotations: |
80-
org.opencontainers.image.description=OptiLLM proxy-only image for API routing without model serving capabilities
8177
cache-from: type=gha,scope=proxy
8278
cache-to: type=gha,scope=proxy,mode=max
8379

@@ -100,8 +96,6 @@ jobs:
10096
type=semver,pattern={{version}}
10197
type=semver,pattern={{major}}.{{minor}}
10298
latest
103-
labels: |
104-
org.opencontainers.image.description=OptiLLM full image with model serving and API routing capabilities
10599
106100
- name: Build and push Docker image
107101
uses: docker/build-push-action@v5
@@ -111,7 +105,5 @@ jobs:
111105
platforms: linux/amd64,linux/arm64
112106
tags: ${{ steps.meta.outputs.tags }}
113107
labels: ${{ steps.meta.outputs.labels }}
114-
annotations: |
115-
org.opencontainers.image.description=OptiLLM full image with model serving amd API routing capabilities
116108
cache-from: type=gha
117109
cache-to: type=gha,mode=max

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
2+
LABEL org.opencontainers.image.description="OptiLLM full image with model serving and API routing capabilities"
3+
LABEL org.opencontainers.image.licenses=Apache-2.0
4+
15
# Build stage
26
FROM python:3.12-slim AS builder
37

Dockerfile.proxy_only

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
2+
LABEL org.opencontainers.image.description="OptiLLM proxy-only image for API routing without model serving capabilities"
3+
LABEL org.opencontainers.image.licenses=Apache-2.0
4+
15
# Build stage
26
FROM python:3.12-slim AS builder
37

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="optillm",
5-
version="0.0.31",
5+
version="0.0.32",
66
packages=find_packages(),
77
py_modules=['optillm'],
88
package_data={

0 commit comments

Comments
 (0)