Skip to content

chore: quote versions in gh actions #4

chore: quote versions in gh actions

chore: quote versions in gh actions #4

Workflow file for this run

name: Build Docker Image
on:
push:
branches:
- main
jobs:
release-docker:
name: Docker - Release image (Python ${{ matrix.python-version }}, MLflow v${{ matrix.mlflow-version }})
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
mlflow-version: ["2.10.2"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ github.sha }}-python${{ matrix.python-version }}-mlflow${{ matrix.mlflow-version }}
ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:latest-python${{ matrix.python-version }}-mlflow${{ matrix.mlflow-version }}
labels: |
org.opencontainers.image.source=${{ github.event.repository.html_url }}
org.opencontainers.image.revision=${{ github.sha }}
build-args: |
BUILDKIT_INLINE_CACHE=1
PYTHON_VERSION=${{ matrix.python-version }}
MLFLOW_VERSION=${{ matrix.mlflow-version }}