feat: backend now uses ffmpeg as local package on server to convert video to audio, added package to dockerfile, naming conventions

This commit is contained in:
theoleuthardt 2025-02-22 15:25:08 +01:00
parent 95c8ba211c
commit f16661d1fd
7 changed files with 143 additions and 84 deletions

View file

@ -2,7 +2,7 @@
FROM node:18-alpine AS base
# Install system dependencies
RUN apk add --no-cache libc6-compat libreoffice ttf-liberation
RUN apk add --no-cache libc6-compat libreoffice ttf-liberation ffmpeg
WORKDIR /app