initial music stuff

This commit is contained in:
ReaperOfVeriod
2026-01-31 02:50:20 +01:00
parent e262300def
commit f00cbb2091
9 changed files with 535 additions and 35 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM node:24-alpine
# Install system dependencies
RUN apk add --no-cache \
ffmpeg \
python3 \
yt-dlp
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY . .
CMD ["node", "main.js"]