Add DECTalk dependencies to Docker image

This commit is contained in:
Puechberty Arthur
2026-04-11 00:54:29 +02:00
parent 960d640f5b
commit 2809e6a77a
+6 -1
View File
@@ -3,7 +3,8 @@ FROM node:24-bookworm
WORKDIR /app
# System dependencies used by native modules and image/audio commands.
RUN apt-get update && apt-get install -y --no-install-recommends \
RUN dpkg --add-architecture i386 \
&& apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
ffmpeg \
git \
@@ -17,6 +18,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
make \
g++ \
python3 \
wine \
wine32 \
xauth \
xvfb \
&& rm -rf /var/lib/apt/lists/*
COPY package*.json ./