Files
TDarr-Auto-Requeue/Dockerfile

17 lines
596 B
Docker
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ───────────────────────────────────────────────
# 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"]