Update Dockerfile
Browse files- Dockerfile +2 -34
Dockerfile
CHANGED
@@ -1,37 +1,11 @@
|
|
1 |
# Use a lightweight Node.js image
|
2 |
-
FROM node:
|
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/
|
35 |
|
36 |
# Set correct permissions
|
37 |
RUN chmod -R 777 /app
|
@@ -40,12 +14,6 @@ RUN chmod -R 777 /app
|
|
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 |
|
|
|
1 |
# Use a lightweight Node.js image
|
2 |
+
FROM node:21-bullseye
|
3 |
|
4 |
# Set working directory
|
5 |
WORKDIR /app
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
# Clone the repository (Change the URL to your repo)
|
8 |
+
RUN git clone https://github.com/BLUEXDEMONl/RAT.git /app
|
9 |
|
10 |
# Set correct permissions
|
11 |
RUN chmod -R 777 /app
|
|
|
14 |
WORKDIR /app
|
15 |
RUN npm install
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
# Fix permissions for Playwright
|
18 |
RUN chmod -R 777 /home/node/.cache/ms-playwright
|
19 |
|