chore(docker): include fewer files while installing dependencies

including just invokeai/version seems sufficient to appease uv sync here. including everything else would invalidate the cache we're trying to establish.
This commit is contained in:
Kevin Turner 2025-02-16 12:31:14 -08:00 committed by GitHub
parent 22362350dc
commit 80d38c0e47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -49,7 +49,7 @@ WORKDIR ${INVOKEAI_SRC}
# x86_64/CUDA is the default
RUN --mount=type=cache,target=/home/ubuntu/.cache/uv,uid=1000,gid=1000 \
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
--mount=type=bind,source=invokeai,target=invokeai \
--mount=type=bind,source=invokeai/version,target=invokeai/version \
if [ "$TARGETPLATFORM" = "linux/arm64" ] || [ "$GPU_DRIVER" = "cpu" ]; then \
UV_INDEX="https://download.pytorch.org/whl/cpu"; \
elif [ "$GPU_DRIVER" = "rocm" ]; then \