We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4167a51 commit 5002ef1Copy full SHA for 5002ef1
1 file changed
Docker/Dockerfile
@@ -35,5 +35,7 @@ RUN cd /opt/sources && git clone --depth=1 --single-branch --branch=main http://
35
36
# Allow non-root to use tcpdump (will need NET_RAW and NET_ADMIN capability when running the container)
37
RUN setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' /usr/bin/tcpdump
38
+# Allow non-root to use gdb on processes (will need SYS_PTRACE capability when running the container)
39
+RUN setcap 'CAP_SYS_PTRACE+eip' /usr/bin/gdb
40
41
USER ${UID}:${GID}
0 commit comments