We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd6a607 commit c052b02Copy full SHA for c052b02
Dockerfile
@@ -5,13 +5,17 @@ FROM ubuntu:noble-20250714
5
# Add any system dependencies for the developer/build environment here
6
RUN apt-get update && apt-get install -y --no-install-recommends \
7
build-essential \
8
- ca-certificates \
+ busybox \
9
curl \
10
+ gdb \
11
git \
- graphviz \
12
- man \
+ man-db \
13
ssh-client
14
15
+# Use busybox to provide any missing commands
16
+# This is useful for commands like `telnet` that are not available in the base image
17
+RUN busybox --install -s
18
+
19
# Copy in the default bash configuration
20
COPY terminal-config /root/terminal-config
21
ENV USER_TERMINAL_CONFIG=/user-terminal-config
0 commit comments