basic functionality running

This commit is contained in:
Simon
2026-01-30 11:24:19 +00:00
parent 6762fb9513
commit 273e7c61f3
8 changed files with 293 additions and 125 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.9-slim
# Install yt-dlp and dependencies
RUN apt-get update && apt-get install -y ffmpeg curl && \
curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp && \
chmod a+rx /usr/local/bin/yt-dlp
WORKDIR /app
COPY . .
RUN pip install -r backend/requirements.txt
CMD ["python", "backend/main.py"]