Compare commits
No commits in common. "main" and "2.10.2" have entirely different histories.
|
@ -8,14 +8,14 @@ jobs:
|
||||||
build:
|
build:
|
||||||
name: Build and push mlflow container
|
name: Build and push mlflow container
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: git.namesny.com/cluster/act-runner:v1@sha256:12ecb5835cd38f38bf9fc7589abc3751861bd737c612bb2a6194615810cb4f92
|
container: git.namesny.com/cluster/act-runner:v1
|
||||||
env:
|
env:
|
||||||
IMAGE_NAME: mlflow
|
IMAGE_NAME: mlflow
|
||||||
REGISTRY: git.namesny.com
|
REGISTRY: git.namesny.com
|
||||||
REPO_OWNER: cluster
|
REPO_OWNER: cluster
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
uses: actions/checkout@v4
|
||||||
- name: Fetch tags
|
- name: Fetch tags
|
||||||
run: git fetch --tags origin
|
run: git fetch --tags origin
|
||||||
- name: Get mlflow version
|
- name: Get mlflow version
|
||||||
|
@ -36,7 +36,7 @@ jobs:
|
||||||
echo "tag_exists=false" >> $GITHUB_OUTPUT
|
echo "tag_exists=false" >> $GITHUB_OUTPUT
|
||||||
fi
|
fi
|
||||||
- name: Login to Registry
|
- name: Login to Registry
|
||||||
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
|
uses: docker/login-action@v3
|
||||||
if: steps.create.outputs.tag_exists == 'false'
|
if: steps.create.outputs.tag_exists == 'false'
|
||||||
with:
|
with:
|
||||||
registry: git.namesny.com
|
registry: git.namesny.com
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM python:3.10-slim@sha256:2407c61b1a18067393fecd8a22cf6fceede893b6aaca817bf9fbfe65e33614a3
|
FROM python:3.10-slim@sha256:e53bad75661571d23d9fd632d10f192b09228f31b14af1fc0be3d0142b426657
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
EXPOSE 5000
|
EXPOSE 5000
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
mlflow==2.11.4
|
mlflow==2.10.2
|
||||||
psycopg2-binary==2.9.9
|
psycopg2-binary==2.9.9
|
||||||
boto3==1.34.162
|
boto3==1.34.40
|
Loading…
Reference in New Issue