initial music stuff
This commit is contained in:
+16
@@ -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"]
|
||||
Reference in New Issue
Block a user