forked from GH05TCREW/pentestagent
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
67 lines (54 loc) · 1.39 KB
/
Dockerfile
File metadata and controls
67 lines (54 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# PentestAgent - AI Penetration Testing Agent
# Base image with common tools
FROM python:3.11-slim
LABEL maintainer="PentestAgent"
LABEL description="AI penetration testing"
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
ENV DEBIAN_FRONTEND=noninteractive
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
# Basic utilities
curl \
wget \
git \
vim \
# Network tools
nmap \
netcat-openbsd \
dnsutils \
iputils-ping \
traceroute \
tcpdump \
# Web tools
httpie \
# VPN support
openvpn \
wireguard-tools \
# Build tools
build-essential \
libffi-dev \
libssl-dev \
# Clean up
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Create app directory
WORKDIR /app
# Install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# Create non-root user for security
RUN useradd -m -s /bin/bash pentestagent && \
chown -R pentestagent:pentestagent /app
RUN playwright install-deps
# Switch to non-root user (can switch back for privileged operations)
USER pentestagent
RUN playwright install
# Copy application code
COPY --chown=pentestagent:pentestagent . .
# Expose any needed ports
EXPOSE 8080
# Default command
CMD ["python", "-m", "pentestagent"]