From 4260bb5271ddb192b2f49bbc2db6dc3b95bd6035 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Tue, 21 Oct 2025 08:52:47 +0300 Subject: [PATCH] chore: enable youtube on docker by default --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a6ce2b2..15d3084 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ COPY --from=planner /app/recipe.json recipe.json RUN cargo chef cook --release --recipe-path recipe.json # Build application 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