Update Dockerfile
This commit is contained in:
41
Dockerfile
41
Dockerfile
@@ -1,45 +1,18 @@
|
|||||||
FROM ubuntu:22.04
|
# Use official Node.js image
|
||||||
|
FROM node:20
|
||||||
# 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
|
# Set working directory
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Copy package files
|
# Copy package files and install dependencies
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
|
|
||||||
# Install NPM dependencies
|
|
||||||
RUN npm install
|
RUN npm install
|
||||||
|
|
||||||
# Copy application code
|
# Copy the rest of the app
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# Install PM2 globally
|
# Expose port (adjust if your app uses a different one)
|
||||||
RUN npm install -g pm2
|
|
||||||
|
|
||||||
# Expose port 8080 (for Cloudflare solver)
|
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
||||||
# Start PM2 with production mode (npm start equivalent)
|
# Default command (can be overridden)
|
||||||
CMD pm2 start index.js --name "cf-bypass" --no-daemon && pm2 startup && pm2 save
|
CMD ["npm", "start"]
|
||||||
|
|||||||
Reference in New Issue
Block a user