update Dockerfile

This commit is contained in:
Ayden Jahola 2025-09-20 00:06:07 +01:00
parent fc2cda0e81
commit 8c3f955f19

View file

@ -3,8 +3,12 @@ FROM node:24-slim
WORKDIR /app WORKDIR /app
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y ffmpeg && \ apt-get install -y \
rm -rf /var/lib/apt/lists/* ffmpeg \
build-essential \
python3 \
git \
&& rm -rf /var/lib/apt/lists/*
COPY package*.json ./ COPY package*.json ./
@ -14,4 +18,4 @@ COPY . .
ENV NODE_ENV=production ENV NODE_ENV=production
CMD ["node", "index.js"] CMD ["node", "index.js"]