All checks were successful
Publish Docker image / Push Docker image to registry (push) Successful in 1m19s
10 lines
349 B
Docker
10 lines
349 B
Docker
FROM python:3.11.3-slim-bullseye
|
|
|
|
WORKDIR /app
|
|
RUN apt update && apt install -y git
|
|
RUN pip install git+https://github.com/hifimusix/streamrip.git --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" ] |