Some checks failed
Publish Docker image / Push Docker image to registry (push) Failing after 41s
9 lines
312 B
Docker
9 lines
312 B
Docker
FROM python:3.11.3-slim-bullseye
|
|
|
|
WORKDIR /app
|
|
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" ] |