From e9b50164a2b51bedf80c6e345a73f1455d23cbee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Thu, 4 Apr 2024 19:32:23 +0200 Subject: [PATCH] fix: install ffmpeg in docker image --- Earthfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Earthfile b/Earthfile index 4c99a6b..e9b3c1b 100644 --- a/Earthfile +++ b/Earthfile @@ -2,6 +2,7 @@ VERSION 0.7 server: FROM node:lts-hydrogen + RUN apt-get update && apt-get -y install ffmpeg --no-install-recommends RUN npm -g install pnpm WORKDIR /app COPY package.json pnpm-lock.yaml ./