| # Z374_LL4M4 CLOUD PERSISTENCE ENGINE (LITE) | |
| FROM node:20-slim | |
| # Minimal system dependencies | |
| RUN apt-get update && apt-get install -y \ | |
| python3 \ | |
| curl \ | |
| git \ | |
| && rm -rf /var/lib/apt/lists/* | |
| WORKDIR /app | |
| COPY package*.json ./ | |
| RUN npm install --production | |
| COPY . . | |
| RUN chmod +x *.js | |
| ENV PORT=7860 | |
| EXPOSE 7860 | |
| CMD ["node", "server.js"] |