Skip to content

Commit a7ae73f

Browse files
committed
Youtube shorts dagster pipeline
1 parent f875036 commit a7ae73f

File tree

14 files changed

+1090
-2
lines changed

14 files changed

+1090
-2
lines changed

dg_projects/learning_resources/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ FROM python:3.13-slim-bookworm
3232
# It is important to use the image that matches the builder, as the path to the
3333
# Python executable must be the same.
3434

35+
# Install ffmpeg for video processing (needed by yt-dlp)
36+
RUN apt-get update && \
37+
apt-get install -y ffmpeg && \
38+
apt-get clean && \
39+
rm -rf /var/lib/apt/lists/*
40+
3541
# Copy the application from the builder
3642
COPY --from=builder /app/dg_projects/learning_resources /app
3743

0 commit comments

Comments
 (0)