forked from kubeflow/pipelines-components
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDockerfile.konflux.automl
More file actions
21 lines (17 loc) · 1.04 KB
/
Dockerfile.konflux.automl
File metadata and controls
21 lines (17 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
ARG BASE_IMAGE="registry.redhat.io/rhai/base-image-cpu-rhel9@sha256:118425714f88c5b24cd67e828e0bcc7a9bc634ab2a1448e8f0975dfd85aea45c"
FROM ${BASE_IMAGE}
COPY pipelines/training/automl/autogluon_tabular_training_pipeline/requirements.txt \
pipelines/training/automl/autogluon_tabular_training_pipeline/requirements-pypi.txt \
/tmp/
## Ensure build isolation
RUN pip install --index-url https://console.redhat.com/api/pypi/public-rhai/rhoai/3.4/cpu-ubi9-test/simple/ --no-cache-dir -r /tmp/requirements.txt
RUN pip install --index-url https://pypi.org/simple --no-cache-dir -r /tmp/requirements-pypi.txt
LABEL com.redhat.component="odh-automl-container" \
name="managed-open-data-hub/odh-automl-rhel9" \
description="odh-automl" \
summary="odh-automl" \
maintainer="['managed-open-data-hub@redhat.com']" \
io.openshift.expose-services="" \
io.k8s.display-name="odh-automl" \
io.k8s.description="odh-automl" \
com.redhat.license_terms="https://www.redhat.com/licenses/Red_Hat_Standard_EULA_20191108.pdf"