Files
spotify-downloader/Dockerfile
Ritiek Malhotra cc018ea0a2 Update Dockerfile
2017-12-21 14:00:09 +05:30

13 lines
325 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
ENTRYPOINT ["python3", "/spotify-downloader/spotdl.py", "-f", "/spotify-downloader"]