Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -8,7 +8,9 @@ WORKDIR /usr/src/app
|
|
8 |
RUN mkdir -p /usr/src/app && chmod -R 777 /usr/src/app
|
9 |
|
10 |
# Install masscan (you can adjust this if you're using a different tool)
|
11 |
-
RUN apt-get update &&
|
|
|
|
|
12 |
|
13 |
# Copy the script into the container at /usr/src/app
|
14 |
COPY exclude.txt .
|
|
|
8 |
RUN mkdir -p /usr/src/app && chmod -R 777 /usr/src/app
|
9 |
|
10 |
# Install masscan (you can adjust this if you're using a different tool)
|
11 |
+
RUN apt-get update && \
|
12 |
+
apt-get install -y masscan libpcap-dev && \
|
13 |
+
apt-get clean
|
14 |
|
15 |
# Copy the script into the container at /usr/src/app
|
16 |
COPY exclude.txt .
|