Updated Dockerfile so ti installs ffmpeg
This commit is contained in:
3240
.gitignore
vendored
3240
.gitignore
vendored
File diff suppressed because it is too large
Load Diff
@@ -2,6 +2,11 @@ FROM python:3.11-slim
|
|||||||
|
|
||||||
WORKDIR /app
|
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 ./app.py ./
|
||||||
COPY ./utils ./utils
|
COPY ./utils ./utils
|
||||||
COPY ./frontend ./frontend
|
COPY ./frontend ./frontend
|
||||||
|
|||||||
@@ -5,5 +5,5 @@ services:
|
|||||||
- "7070:7070"
|
- "7070:7070"
|
||||||
volumes:
|
volumes:
|
||||||
- "./credentials:/app/credentials"
|
- "./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
|
restart: unless-stopped
|
||||||
|
|||||||
Reference in New Issue
Block a user