initial publish commit

This commit is contained in:
2025-07-14 08:32:43 +02:00
commit e6ce3dd3b8
9 changed files with 933 additions and 0 deletions

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
# ───────────────────────────────────────────────
# Tdarr Auto-Requeue minimal Node 20 image
# ───────────────────────────────────────────────
FROM node:20-alpine
WORKDIR /app
# If you keep a package.json (recommended):
COPY package*.json ./
RUN npm ci --omit=dev # installs axios, pino, minimist, dotenv
# Script & docs
COPY tdarr-requeue.mjs .
COPY README.md .
CMD ["node", "tdarr-requeue.mjs"]