initial publish commit
This commit is contained in:
16
Dockerfile
Normal file
16
Dockerfile
Normal 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"]
|
Reference in New Issue
Block a user