diff --git a/Dockerfile b/Dockerfile index c8a3d05..74c9b9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,12 @@ FROM node:24-slim WORKDIR /app RUN apt-get update && \ - apt-get install -y ffmpeg && \ - rm -rf /var/lib/apt/lists/* + apt-get install -y \ + ffmpeg \ + build-essential \ + python3 \ + git \ + && rm -rf /var/lib/apt/lists/* COPY package*.json ./ @@ -14,4 +18,4 @@ COPY . . ENV NODE_ENV=production -CMD ["node", "index.js"] +CMD ["node", "index.js"] \ No newline at end of file