Revert "Add optional WebTransport frame transport"

This reverts commit 3e2ca8057b.
This commit is contained in:
2026-06-26 16:27:24 -07:00
parent 1da2f71e4b
commit 06760a46b9
9 changed files with 31 additions and 829 deletions

View File

@@ -1,4 +1,4 @@
FROM node:22-trixie-slim
FROM node:22-bookworm-slim
ENV NODE_ENV=production
ENV PORT=3000
@@ -10,7 +10,7 @@ WORKDIR /app
ADD https://api.github.com/repos/yt-dlp/yt-dlp/commits/master /tmp/yt-dlp-master.json
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates ffmpeg openssl python3 python3-pip \
&& apt-get install -y --no-install-recommends ca-certificates ffmpeg python3 python3-pip \
&& python3 -m pip install --no-cache-dir --break-system-packages --upgrade "$YT_DLP_PIP_SPEC" \
&& yt-dlp --version \
&& apt-get purge -y --auto-remove python3-pip \
@@ -30,7 +30,6 @@ RUN mkdir -p /app/data \
USER node
EXPOSE 3000
EXPOSE 3001/udp
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
CMD node -e "fetch('http://127.0.0.1:' + (process.env.PORT || 3000) + '/api/health').then(r => process.exit(r.ok ? 0 : 1)).catch(() => process.exit(1))"