summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorOlcan <[email protected]>2025-04-28 18:40:24 -0700
committerGitHub <[email protected]>2025-04-28 18:40:24 -0700
commit0d849bf58effd00e72a6a169bda8adc120086ac7 (patch)
tree2f20863051bb4c8f7a4ca61e581e7b00ca475235 /Dockerfile
parent3073c67861806a5312f5a7fa4c1c091507bd4755 (diff)
enable servers in sandbox to listen on localhost (127.0.0.1) instead of 0.0.0.0, ensuring servers can be container/host-agnostic (#207)
* enable servers in sandbox to listen on localhost (127.0.0.1) instead of 0.0.0.0, ensuring servers can be container/host-agnostic * Merge remote-tracking branch 'origin/main' into sandbox_localhost_works
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 894e686e..c023d0d0 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -16,6 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
procps \
psmisc \
lsof \
+ socat \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*