mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 18:00:15 +00:00
17 lines
380 B
Docker
17 lines
380 B
Docker
FROM python:3.6-alpine
|
|
|
|
RUN apk add --no-cache \
|
|
ffmpeg
|
|
|
|
ADD requirements.txt /spotify-downloader/
|
|
RUN pip install -r /spotify-downloader/requirements.txt
|
|
RUN rm /spotify-downloader/requirements.txt
|
|
|
|
ADD spotdl.py /spotify-downloader/
|
|
ADD core/ /spotify-downloader/core
|
|
|
|
RUN mkdir /music
|
|
WORKDIR /music
|
|
|
|
ENTRYPOINT ["python3", "/spotify-downloader/spotdl.py", "-f", "/music"]
|