FROM node:20-alpine # Install dependencies for native modules RUN apk add --no-cache python3 make g++ WORKDIR /app COPY package.json ./ # Install dependencies RUN npm install COPY . . # Ensure uploads directory exists RUN mkdir -p uploads EXPOSE 3000 CMD ["npm", "start"]