include graphile worker config file
Some checks failed
ci / test (push) Failing after 7m24s
ci / build (push) Successful in 28m11s

This commit is contained in:
CJ_Clippy 2025-09-25 07:01:48 -08:00
parent 669ea9d06b
commit b050f0e8f1
2 changed files with 4 additions and 3 deletions

View File

@ -46,7 +46,7 @@ RUN . /app/venv/bin/activate
RUN --mount=type=cache,target=/root/.cache/uv \ RUN --mount=type=cache,target=/root/.cache/uv \
python3 -m pip install uv && \ python3 -m pip install uv && \
uv pip install torch --index-url https://download.pytorch.org/whl/cpu && \ uv pip install torch --index-url https://download.pytorch.org/whl/cpu && \
uv pip install ultralytics --no-deps && \ uv pip install ultralytics && \
uv pip install vcsi uv pip install vcsi
# we are avoiding installing using requirements.txt file because doing so with ultralytics would install 7GB worth of unecessary dependencies. # we are avoiding installing using requirements.txt file because doing so with ultralytics would install 7GB worth of unecessary dependencies.
@ -99,6 +99,7 @@ COPY --from=builder /app/package.json ./package.json
COPY --from=builder /app/prisma ./prisma COPY --from=builder /app/prisma ./prisma
COPY --from=builder /app/generated ./generated COPY --from=builder /app/generated ./generated
COPY --from=builder /app/src ./src COPY --from=builder /app/src ./src
COPY --from=builder /app/graphile.config.ts ./graphile.config.ts
COPY --from=pystuff /app/venv /app/venv COPY --from=pystuff /app/venv /app/venv
# Expose the port # Expose the port

View File

@ -1,7 +1,7 @@
{ {
"name": "futureporn-our", "name": "futureporn-our",
"private": true, "private": true,
"version": "2.8.7", "version": "2.8.8",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "concurrently npm:dev:serve npm:dev:build:server npm:dev:build:client npm:dev:worker npm:dev:compose npm:dev:sftp npm:dev:qbittorrent npm:dev:tailscale", "dev": "concurrently npm:dev:serve npm:dev:build:server npm:dev:build:client npm:dev:worker npm:dev:compose npm:dev:sftp npm:dev:qbittorrent npm:dev:tailscale",
@ -118,4 +118,4 @@
"prisma": { "prisma": {
"seed": "tsx prisma/seed.ts" "seed": "tsx prisma/seed.ts"
} }
} }