Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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
|