Compare commits

..

2 Commits

Author SHA1 Message Date
f6db07fb97 use python no-cache dir
Some checks failed
ci / build (push) Failing after 1s
ci / Tests & Checks (push) Failing after 1m52s
2025-08-14 04:44:17 -08:00
9481001b05 use python no-cache dir 2025-08-14 04:43:58 -08:00
3 changed files with 14 additions and 3 deletions

View File

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

View File

@ -28,6 +28,10 @@ services:
timeout: 10s
networks:
- default
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
server:
image: gitea.futureporn.net/futureporn/our:latest
@ -43,6 +47,10 @@ services:
sh -c "npx prisma migrate deploy && npm run start:server"
volumes:
- /mnt/vfs/futureporn:/mnt/vfs/futureporn
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
worker:
image: gitea.futureporn.net/futureporn/our:latest
@ -58,7 +66,10 @@ services:
sh -c "npm run start:worker"
volumes:
- /mnt/vfs/futureporn:/mnt/vfs/futureporn
logging:
driver: fluentd
options:
fluentd-address: "localhost:24224"
volumes:
pgdata:

View File

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