We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17e1a4c commit 0de8ddcCopy full SHA for 0de8ddc
omni-reader/.dockerignore
@@ -0,0 +1,5 @@
1
+.venv*
2
+.requirements*
3
+__pycache__/
4
+*.py[cod]
5
+*$py.class
omni-reader/Dockerfile
@@ -0,0 +1,13 @@
+FROM zenmldocker/zenml:0.80.0-py3.11
+
+WORKDIR /app
+# Pre-install specific versions to fix conflicts
6
+RUN pip install --no-cache-dir kubernetes==21.7.0 botocore==1.37.1 aiobotocore==2.21.1 s3fs==2025.3.1
7
8
+# Install your pipeline's dependencies
9
+RUN pip install --no-cache-dir polars==1.26.0 textdistance==4.6.3 instructor==1.7.7 \
10
+ jiwer==3.0.5 litellm==1.64.1 openai==1.69.0 mistralai==1.5.0 Pillow==11.1.0
11
12
+# Set ZenML environment variables
13
+ENV ZENML_LOGGING_COLORS_DISABLED=False
0 commit comments