fix: install ffmpeg in docker

This commit is contained in:
max_richter 2025-05-09 19:14:45 +02:00
parent acefbcbd14
commit 6883780d57
Signed by: max
GPG Key ID: 51973802EF3F77C5

View File

@ -1,7 +1,7 @@
FROM denoland/deno:2.1.4 AS build FROM denoland/deno:2.3.1 AS build
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
curl && \ curl ffmpeg && \
deno run -A npm:playwright install --with-deps firefox &&\ deno run -A npm:playwright install --with-deps firefox &&\
apt-get clean && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*