Skip to content

Commit abad806

Browse files
committed
deps installation bug fixed
1 parent 5315607 commit abad806

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyaction/action_template/{{action_slug}}/Dockerfile.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY . .
1414
RUN [ -f pre-script.sh ] && sh pre-script.sh || true
1515

1616
# Install action dependencies
17-
RUN uv sync --no-install-project --no-cache
17+
RUN uv pip install . --system
1818

1919
# running the post-script.sh
2020
RUN [ -f post-script.sh ] && sh post-script.sh || true

test_action/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY . .
1414
RUN [ -f pre-script.sh ] && sh pre-script.sh || true
1515

1616
# Install project dependencies first for better caching
17-
RUN uv sync --no-install-project --no-cache
17+
RUN uv pip install . --system
1818

1919
# Running the post-script.sh
2020
RUN [ -f post-script.sh ] && sh post-script.sh || true

0 commit comments

Comments
 (0)