Changes for v1.0.0 release (#345)

* Move spotdl.py inside spotdl directory

* Fix Dockerfile

* Re-upload FFmpeg binary

* Small fixes ;)
This commit is contained in:
Ritiek Malhotra
2018-09-09 08:00:01 -07:00
committed by GitHub
parent a7e9009aa6
commit e0c8960906
21 changed files with 51 additions and 73 deletions

View File

@@ -3,14 +3,14 @@ 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/ /spotify-downloader/spotdl
ADD setup.py /spotify-downloader/setup.py
ADD README.md /spotify-downloader/README.md
ADD spotdl.py /spotify-downloader/
ADD core/ /spotify-downloader/core
WORKDIR /spotify-downloader
RUN pip install .
RUN mkdir /music
WORKDIR /music
ENTRYPOINT ["python3", "/spotify-downloader/spotdl.py", "-f", "/music"]
ENTRYPOINT ["spotdl", "-f", "/music"]