Some checks failed
Publish Docker image / Push Docker image to registry (push) Failing after 2m49s
12 lines
425 B
Docker
12 lines
425 B
Docker
FROM python:3.14.0-slim-trixie
|
|
|
|
WORKDIR /app
|
|
RUN apt update && apt install -y git apt-utils
|
|
#RUN pip install git+https://github.com/hifimusix/streamrip.git --upgrade
|
|
RUN pip install git+https://github.com/nathom/streamrip --upgrade
|
|
COPY .config/streamrip/config.toml /root/.config/streamrip/config.toml
|
|
|
|
COPY docker-entrypoint.sh ./
|
|
RUN ["chmod", "+x", "/app/docker-entrypoint.sh"]
|
|
ENTRYPOINT [ "/app/docker-entrypoint.sh" ]
|