From 6b6ac2811f72cae907acd7736021e4e7cb0d3906 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abhinai=20Reddy=E2=9B=94=EF=B8=8F?= <159715958+abhinai2244@users.noreply.github.com> Date: Fri, 26 Sep 2025 18:11:54 +0530 Subject: [PATCH] Update Dockerfile --- Dockerfile | 46 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 37 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 548f6f7..b54dd82 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,45 @@ -FROM node:18-slim +FROM ubuntu:22.04 +# Install dependencies +RUN apt-get update && apt-get install -y \ + curl \ + wget \ + gnupg \ + xvfb \ + && rm -rf /var/lib/apt/lists/* + +# Install Node.js 22.x +RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \ + && apt-get install -y nodejs + +# Install Google Chrome +RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \ + && echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list \ + && apt-get update \ + && apt-get install -y google-chrome-stable \ + && rm -rf /var/lib/apt/lists/* + +# Set up Xvfb (virtual display) +RUN Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & +ENV DISPLAY=:99 + +# Set working directory WORKDIR /app -COPY . . +# Copy package files +COPY package*.json ./ +# Install NPM dependencies RUN npm install +# Copy application code +COPY . . + +# Install PM2 globally +RUN npm install -g pm2 + +# Expose port 8080 (for Cloudflare solver) EXPOSE 8080 -# Default to production mode -CMD ["npm", "start"] - -# For development mode, override with: docker run -e NODE_ENV=development ... -CMD ["npm", "run", "dev"] - -#ABHI +# Start PM2 with production mode (npm start equivalent) +CMD pm2 start index.js --name "cf-bypass" --no-daemon && pm2 startup && pm2 save