Initial commit

This commit is contained in:
2023-05-09 20:33:07 +02:00
commit 0c0defc340
4 changed files with 193 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
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" ]