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