FROM node:20 # Install dependensi sistem keur Chrome & Sharp RUN apt-get update && apt-get install -y \ libgbm-dev libnss3 libasound2 libxss1 libxtst6 \ libgl1-mesa-glx libglib2.0-0 tesseract-ocr \ --no-install-recommends && rm -rf /var/lib/apt/lists/* WORKDIR /app COPY package*.json ./ RUN npm install COPY . . ENV PORT=7860 CMD ["node", "api.js"]