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
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ jobs:
run: |
DOCKER_BUILDKIT=1 docker build . \
--build-arg RUNTIMES=all \
--label name="mlserver" \
--label vendor="SeldonIO" \
--label version="${{ github.event.inputs.version }}" \
--label release="${{ github.event.inputs.version }}" \
--label summary="An open source inference server for your machine learning models." \
--label description="MLServer aims to provide an easy way to start serving your machine learning models through a REST and gRPC interface, fully compliant with KFServing’s V2 Dataplane spec." \
--label maintainer="hello@seldon.io" \
-t $MLSERVER_IMAGE
- name: Scan Docker Image
uses: snyk/actions/docker@master
Expand Down Expand Up @@ -126,6 +133,13 @@ jobs:
run: |
DOCKER_BUILDKIT=1 docker build . \
--build-arg RUNTIMES="" \
--label name="mlserver" \
--label vendor="SeldonIO" \
--label version="${{ github.event.inputs.version }}" \
--label release="${{ github.event.inputs.version }}" \
--label summary="An open source inference server for your machine learning models." \
--label description="MLServer aims to provide an easy way to start serving your machine learning models through a REST and gRPC interface, fully compliant with KFServing’s V2 Dataplane spec." \
--label maintainer="hello@seldon.io" \
-t $MLSERVER_IMAGE-slim
- name: Scan Docker Image
uses: snyk/actions/docker@master
Expand Down Expand Up @@ -249,6 +263,13 @@ jobs:
run: |
DOCKER_BUILDKIT=1 docker build . \
--build-arg RUNTIMES=mlserver-${{ matrix.runtime }} \
--label name="mlserver" \
--label vendor="SeldonIO" \
--label version="${{ github.event.inputs.version }}" \
--label release="${{ github.event.inputs.version }}" \
--label summary="An open source inference server for your machine learning models." \
--label description="MLServer aims to provide an easy way to start serving your machine learning models through a REST and gRPC interface, fully compliant with KFServing’s V2 Dataplane spec." \
--label maintainer="hello@seldon.io" \
-t $MLSERVER_IMAGE-${{ matrix.runtime }}
- name: Scan Docker Image
uses: snyk/actions/docker@master
Expand Down
3 changes: 0 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
FROM python:3.10-slim AS wheel-builder
SHELL ["/bin/bash", "-l", "-c"]

LABEL vendor="SeldonIO"
LABEL maintainer="hello@seldon.io"

ARG POETRY_VERSION="2.1.1"

COPY ./hack/build-wheels.sh ./hack/build-wheels.sh
Expand Down
Loading