Skip to content

Instantly share code, notes, and snippets.

@gh640
Created July 29, 2024 00:57
Show Gist options
  • Save gh640/92e4ac5d3d8ad819b230178197727803 to your computer and use it in GitHub Desktop.
Save gh640/92e4ac5d3d8ad819b230178197727803 to your computer and use it in GitHub Desktop.
Docker: Dockerfile to use ffmpeg on Debian Bookwrom
# 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