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 297a98c commit f7b19e1Copy full SHA for f7b19e1
airbyte_cdk/utils/docker.py
@@ -27,9 +27,11 @@
27
COPY {connector_snake_name} ./{connector_snake_name}
28
{extra_build_steps}
29
30
-# RUN pip install --no-cache-dir uv
+# TODO: Pre-install uv on the base image to speed up the build.
31
+# (uv is still faster even with the extra step.)
32
+RUN pip install --no-cache-dir uv
33
-RUN python -m pip install --no-cache-dir .
34
+RUN python -m uv pip install --no-cache-dir .
35
36
FROM {base_image}
37
0 commit comments