fix pip path
Some checks failed
ci / build (push) Failing after 1s
ci / Tests & Checks (push) Failing after 20s

This commit is contained in:
CJ_Clippy 2025-08-13 04:46:52 -08:00
parent 022f3e0dd9
commit 82c614f1e3
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ RUN python3 -m venv /app/venv
ENV PATH="/app/venv/bin:$PATH" ENV PATH="/app/venv/bin:$PATH"
# Install torrentfile & other python deps # Install torrentfile & other python deps
RUN ./venv/pip install -r requirements.txt RUN ./venv/bin/pip install -r requirements.txt
# Expose the port # Expose the port
EXPOSE 5000 EXPOSE 5000

View File

@ -1,7 +1,7 @@
{ {
"name": "futureporn", "name": "futureporn",
"private": true, "private": true,
"version": "2.4.0", "version": "2.4.1",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "concurrently npm:dev:serve npm:dev:build npm:dev:worker npm:dev:compose npm:dev:sftp", "dev": "concurrently npm:dev:serve npm:dev:build npm:dev:worker npm:dev:compose npm:dev:sftp",