mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-12-08 20:39:08 +00:00
15 lines
334 B
Docker
15 lines
334 B
Docker
FROM python:3.6-alpine
|
|
|
|
RUN apk add --no-cache \
|
|
ffmpeg
|
|
|
|
ADD requirements.txt /spotify-downloader/
|
|
RUN cd /spotify-downloader && pip install -U -r requirements.txt
|
|
|
|
ADD spotdl.py /spotify-downloader/
|
|
ADD core/ /spotify-downloader/core
|
|
|
|
WORKDIR /spotify-downloader
|
|
|
|
ENTRYPOINT ["python3", "spotdl.py", "-f", "/spotify-downloader"]
|