9 lines
275 B
Docker
9 lines
275 B
Docker
FROM python:3.11.3-slim-bullseye
|
|
|
|
WORKDIR /app
|
|
RUN pip install 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" ] |