Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ ENV DEBIAN_FRONTEND=noninteractive
ENV DISPLAY=:99
ENV HOME=/home/sandbox

# Layer 1: System deps — display, VNC, window manager, X11 tools
# Layer 1: System deps — display, VNC, window manager, X11 tools, network
# debug tooling. The network tools (iproute2, net-tools, dnsutils, jq) are
# load-bearing for any agent that needs to introspect ports, sockets, or
# DNS from inside the sandbox. Without them, debugging "is chrome's CDP
# port actually listening?" requires apt-get inside a running container,
# which is slow and bloats the layer.
RUN apt-get update && apt-get install -y --no-install-recommends \
xvfb \
x11vnc \
Expand All @@ -26,8 +31,16 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
fonts-noto-mono \
dbus-x11 \
curl \
wget \
ca-certificates \
gnupg \
iproute2 \
net-tools \
dnsutils \
iputils-ping \
jq \
procps \
less \
python3 \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
Expand Down
Loading