From a6e91ac192652a2454ea26f8b74de39505dc3afb Mon Sep 17 00:00:00 2001 From: hansinikarunarathne Date: Sun, 15 Sep 2024 01:55:24 +0530 Subject: [PATCH] fix issue in Dockerfile Signed-off-by: hansinikarunarathne --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index d933bff..5d671c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,8 @@ FROM python:3.12-slim AS backend-kubeflow-wheel WORKDIR /src +RUN pip install setuptools wheel + ARG BACKEND_LIB=/kf/kubeflow/components/crud-web-apps/common/backend COPY --from=fetch-kubeflow-kubeflow $BACKEND_LIB . RUN python setup.py sdist bdist_wheel