File size: 395 Bytes
cfe23f6
603554d
cfe23f6
 
 
 
 
603554d
cfe23f6
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Use a lightweight Node.js image
FROM node:21-bullseye

# Set working directory
WORKDIR /app

# Clone the repository (Change the URL to your repo)
RUN git clone https://github.com/BLUEXDEMONl/RAT.git /app

# Set correct permissions
RUN chmod -R 777 /app

# Install project dependencies
WORKDIR /app
RUN npm install

# Expose a port
EXPOSE 3000

# Start the application
CMD ["node", "server.js"]