FROM debian@sha256:fdd75562fdcde1039c2480a1ea1cd2cf03b18b6e4cb551cabb03bde66ade8a5d # Update package list and install required packages RUN apt-get update && \ apt-get install -y \ tmux \ ffmpeg \ curl \ python3 \ python3-pip && \ rm -rf /var/lib/apt/lists/* # Install yt-dlp RUN curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp && \ chmod a+rx /usr/local/bin/yt-dlp # Set the default working directory WORKDIR /root # Set the entrypoint to bash ENTRYPOINT ["/bin/bash"]