video understanding
Some checks failed
Build and Deploy / build (push) Failing after 2m17s
Build and Deploy / docker-build (push) Has been skipped
Deploy to Server / deploy (push) Successful in 43s

This commit is contained in:
2026-04-29 11:50:44 -05:00
parent 5bf0622c38
commit 193a825899
14 changed files with 1435 additions and 15 deletions

View File

@@ -1,9 +1,14 @@
FROM node:20-alpine
WORKDIR /app
# Install python3 and yt-dlp (no ffmpeg to save space)
RUN apk add --no-cache python3 py3-pip && \
pip3 install --break-system-packages yt-dlp
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 80
EXPOSE 3000
CMD ["node", "server.js"]