ADD file:7625ddfd589fb824ee39f1b1eb387b98f3676420ff52f26eb9d975151e889667 in / |
CMD ["/bin/sh"] |
LABEL authors=Guillaume |
WORKDIR /app |
COPY requirements.txt . # buildkit |
RUN /bin/sh -c apk update # buildkit |
RUN /bin/sh -c apk add python3 py3-pip # buildkit |
RUN /bin/sh -c pip install -r requirements.txt # buildkit |
RUN /bin/sh -c spotdl --download-ffmpeg # buildkit |
RUN /bin/sh -c apk update && apk add zip # buildkit |
COPY static ./static # buildkit |
COPY templates ./templates # buildkit |
COPY app.py . # buildkit |
CMD ["python" "./app.py"] |