diff --git a/backend/Dockerfile b/backend/Dockerfile index 2cb042a..ccd510e 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -6,6 +6,7 @@ RUN apt update && apt install -y curl ffmpeg && \ WORKDIR /app COPY . . + RUN pip install --no-cache-dir -r requirements.txt ENV MUSIC_DIR=/music diff --git a/backend/requirements.txt b/backend/requirements.txt index 24b4f82..e2c0f5a 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -1,4 +1,6 @@ fastapi uvicorn pydantic -requests \ No newline at end of file +requests +downloader +config \ No newline at end of file