mukuu commited on
Commit
20884b8
·
verified ·
1 Parent(s): 67bf8ba

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -6,8 +6,10 @@ WORKDIR /usr/src/app
6
 
7
  # Create the output directory and set appropriate permissions
8
  RUN mkdir -p /usr/src/app && chmod -R 777 /usr/src/app
 
9
 
10
  # Copy the script into the container at /usr/src/app
 
11
  COPY script.sh .
12
 
13
  # Make the script executable
 
6
 
7
  # Create the output directory and set appropriate permissions
8
  RUN mkdir -p /usr/src/app && chmod -R 777 /usr/src/app
9
+ RUN apt-get update -y && apt-get install -y --force-yes masscan
10
 
11
  # Copy the script into the container at /usr/src/app
12
+ COPY exclude.txt .
13
  COPY script.sh .
14
 
15
  # Make the script executable