We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0f647b commit d013d22Copy full SHA for d013d22
isponsorblocktv/Dockerfile
@@ -8,11 +8,10 @@ ARG ISPONSORBLOCKTV_VERSION=v2.6.1
8
RUN apk add --no-cache uv git gcc musl-dev
9
10
WORKDIR /app
11
+# TODO: remove sed once upstream merges Python 3.14 fix
12
RUN git clone --branch ${ISPONSORBLOCKTV_VERSION} --depth 1 \
- https://github.com/dmunozv04/iSponsorBlockTV .
13
-
14
-# TODO: remove once upstream merges Python 3.14 fix
15
-RUN sed -i 's/aiohttp==3.12.15/aiohttp==3.13.2/' requirements.txt
+ https://github.com/dmunozv04/iSponsorBlockTV . \
+ && sed -i 's/aiohttp==3.12.15/aiohttp==3.13.2/' requirements.txt
16
17
# uv sync reads pyproject.toml, creates .venv, installs all dependencies
18
RUN uv sync --no-dev --no-editable --index-strategy unsafe-best-match
0 commit comments