Skip to content

Commit

Permalink
Adds runtime dependencies for openvas
Browse files Browse the repository at this point in the history
  • Loading branch information
nichtsfrei committed Nov 11, 2024
1 parent 63270f9 commit c6c108b
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,21 @@ FROM rust:latest
ARG UID=1000
ARG GID=1000

RUN apt-get update && apt-get install -y sudo git rsync pipx redis-server clangd
RUN apt-get update && apt-get install -y \
sudo \
git \
rsync \
pipx \
redis-server \
clangd \
# Runtime dependencies, required for .devcontainer
nmap \
snmp \
netdiag \
pnscan \
# net-tools is required by some nasl plugins.
# nasl_pread: Failed to execute child process “netstat” (No such file or directory)
net-tools
# Add prepare-user-dirs.sh and execcute it
COPY prepare-user-dirs.sh /prepare-user-dirs.sh
COPY build-cmake-project.sh /usr/local/bin/build-cmake-project.sh
Expand Down

0 comments on commit c6c108b

Please sign in to comment.