FROM node:18-slim WORKDIR /app RUN apt-get update && apt-get install -y git python3 python3-pip && \ git clone https://github.com/mccoy88f/OMG-Premium-TV.git . RUN npm install ENV PORT=7860 EXPOSE 7860 CMD ["node", "index.js"]