From 80d38c0e477e40dd1d6e6fc603914eb911bf93f3 Mon Sep 17 00:00:00 2001 From: Kevin Turner <83819+keturn@users.noreply.github.com> Date: Sun, 16 Feb 2025 12:31:14 -0800 Subject: [PATCH] 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. --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 12f2c09a0f..bd10db8417 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -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 \