File size: 1,187 Bytes
260a35a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# Use a lightweight Node.js image
FROM node:18-bullseye
# Set working directory
WORKDIR /app
# Install system dependencies required for Playwright
RUN apt-get update && apt-get install -y \
git \
wget \
curl \
unzip \
fonts-liberation \
libasound2 \
libatk-bridge2.0-0 \
libatk1.0-0 \
libcups2 \
libdbus-1-3 \
libgbm-dev \
libnspr4 \
libnss3 \
libxcomposite1 \
libxdamage1 \
libxfixes3 \
libxrandr2 \
xdg-utils \
libu2f-udev \
libvulkan1 \
xvfb \
--no-install-recommends && \
rm -rf /var/lib/apt/lists/*
# Clone the repository (Change the URL to your repo)
RUN git clone https://github.com/BLUEXDEMONl/BLUE-ENDPOINT.git /app
# Set correct permissions
RUN chmod -R 777 /app
# Install project dependencies
WORKDIR /app
RUN npm install
# Set Playwright cache path
ENV PLAYWRIGHT_BROWSERS_PATH=/home/node/.cache/ms-playwright
# Install Playwright browsers (force full installation)
RUN npx playwright install --with-deps chromium
# Fix permissions for Playwright
RUN chmod -R 777 /home/node/.cache/ms-playwright
# Expose a port
EXPOSE 3000
# Start the application
CMD ["node", "server.js"] |