FROM node:18 # Install FFmpeg RUN apt-get update && apt-get install -y ffmpeg && apt-get clean WORKDIR /app COPY . . # Install dependencies RUN npm install # Hugging Face uses port 7860 by default (can still expose 3000) EXPOSE 7860 CMD ["npm", "start"]