Updated Dockerfile so ti installs ffmpeg

This commit is contained in:
cool.gitter.choco
2025-01-24 18:55:53 -06:00
parent 9fc86d3d44
commit 7dbc7c1c9c
3 changed files with 3246 additions and 1 deletions

3240
.gitignore vendored

File diff suppressed because it is too large Load Diff

View File

@@ -2,6 +2,11 @@ FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && \
apt-get install -y --no-install-recommends ffmpeg && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
COPY ./app.py ./
COPY ./utils ./utils
COPY ./frontend ./frontend

View File

@@ -5,5 +5,5 @@ services:
- "7070:7070"
volumes:
- "./credentials:/app/credentials"
- "./downloads:/app/downloads" # <-- change this mapping for your music library directory
- "./downloads:/app/downloads/music" # <-- change this mapping for your music library directory
restart: unless-stopped