Skip to content

Commit

Permalink
deps installation bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
lnxpy committed Nov 22, 2024
1 parent 5315607 commit abad806
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyaction/action_template/{{action_slug}}/Dockerfile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test_action/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit abad806

Please sign in to comment.