We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d014e67 commit abe4fd9Copy full SHA for abe4fd9
Dockerfile
@@ -9,8 +9,13 @@ COPY ${SOURCE_CODE} .
9
10
USER root
11
12
+# Remove the sed after using a released KFP SDK. This is a workaround since pip install requires everything have
13
+# hashes if provided and git sources cannot have a hash.
14
+# See: https://github.com/pypa/pip/issues/6469
15
RUN echo "Installing Runtime Dependencies" && \
16
dnf install -y skopeo && dnf clean all && \
17
+ sed -i 's/kfp @.*//g' requirements.txt && \
18
+ pip install --no-deps 'kfp @ git+https://github.com/kubeflow/pipelines@26946059963051cce5a8a70270ebc6bc9f7e2bd6#egg=kfp&subdirectory=sdk/python' && \
19
pip install --no-cache-dir -r requirements.txt && \
20
chgrp -R 0 . && \
21
chmod -R g=u . && \
0 commit comments