From abad806f0664831eb9bf9ca6a21e4df8e83a221d Mon Sep 17 00:00:00 2001 From: Sadra Yahyapour Date: Fri, 22 Nov 2024 18:17:13 +0330 Subject: [PATCH] deps installation bug fixed --- pyaction/action_template/{{action_slug}}/Dockerfile.jinja | 2 +- test_action/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyaction/action_template/{{action_slug}}/Dockerfile.jinja b/pyaction/action_template/{{action_slug}}/Dockerfile.jinja index baa8b09..821c379 100644 --- a/pyaction/action_template/{{action_slug}}/Dockerfile.jinja +++ b/pyaction/action_template/{{action_slug}}/Dockerfile.jinja @@ -14,7 +14,7 @@ COPY . . RUN [ -f pre-script.sh ] && sh pre-script.sh || true # Install action dependencies -RUN uv sync --no-install-project --no-cache +RUN uv pip install . --system # running the post-script.sh RUN [ -f post-script.sh ] && sh post-script.sh || true diff --git a/test_action/Dockerfile b/test_action/Dockerfile index 261ae8e..2452be1 100644 --- a/test_action/Dockerfile +++ b/test_action/Dockerfile @@ -14,7 +14,7 @@ COPY . . RUN [ -f pre-script.sh ] && sh pre-script.sh || true # Install project dependencies first for better caching -RUN uv sync --no-install-project --no-cache +RUN uv pip install . --system # Running the post-script.sh RUN [ -f post-script.sh ] && sh post-script.sh || true