Files
streamrip-docker/Dockerfile
Matthew 0e1afc3a8a
All checks were successful
Publish Docker image / Push Docker image to registry (push) Successful in 3m7s
do we still need the extra packages?
2025-11-13 22:38:13 +01:00

12 lines
493 B
Docker

FROM python:3.13.9-slim-trixie
WORKDIR /app
RUN DEBIAN_FRONTEND=noninteractive apt update && apt install -yq git && rm -rf /var/lib/apt/lists/*
#RUN pip install git+https://github.com/hifimusix/streamrip.git --upgrade
RUN pip install --no-cache-dir 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" ]