FROM node:20-slim WORKDIR /app RUN apt-get update && apt-get install -y \ cmake \ build-essential \ python3 \ && rm -rf /var/lib/apt/lists/* COPY package.json ./ RUN npm install COPY index.js ./ EXPOSE 7860 CMD ["node", "index.js"]