Created
July 29, 2024 00:57
-
-
Save gh640/92e4ac5d3d8ad819b230178197727803 to your computer and use it in GitHub Desktop.
Docker: Dockerfile to use ffmpeg on Debian Bookwrom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# syntax=docker/dockerfile:1 | |
FROM debian:bookworm | |
RUN <<EOT | |
apt-get update | |
apt-get install -y --no-install-recommends \ | |
ffmpeg \ | |
> /dev/null | |
rm -rf /var/lib/apt/lists/* | |
EOT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment