mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2026-01-28 04:06:27 +00:00
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:
12
Dockerfile
12
Dockerfile
@@ -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"]
|
||||
|
||||
Reference in New Issue
Block a user