chore(sdk): Update pyfunc server and batch predictor default version #2464
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: External Dependencies CI Workflow | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
DOCKER_REGISTRY: ghcr.io | |
jobs: | |
publish-mlflow-docker: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.DOCKER_REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push MLflow Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: mlflow | |
push: true | |
file: mlflow/Dockerfile | |
build-args: MLFLOW_VERSION=1.26.1 | |
tags: ghcr.io/caraml-dev/mlflow:1.26.1 |