chore: enable youtube on docker by default

This commit is contained in:
Kristofers Solo 2025-10-21 08:52:47 +03:00
parent 2d4a409b84
commit 4260bb5271
Signed by: kristoferssolo
GPG Key ID: 74FF8144483D82C8

View File

@ -13,7 +13,7 @@ COPY --from=planner /app/recipe.json recipe.json
RUN cargo chef cook --release --recipe-path recipe.json RUN cargo chef cook --release --recipe-path recipe.json
# Build application # Build application
COPY . . COPY . .
RUN cargo build --release RUN cargo build --release --no-default-features --features youtube
FROM ghcr.io/astral-sh/uv:trixie-slim AS builder-py FROM ghcr.io/astral-sh/uv:trixie-slim AS builder-py