Skip to content

Commit c052b02

Browse files
committed
Add busybox utils and gdb
1 parent dd6a607 commit c052b02

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@ FROM ubuntu:noble-20250714
55
# Add any system dependencies for the developer/build environment here
66
RUN apt-get update && apt-get install -y --no-install-recommends \
77
build-essential \
8-
ca-certificates \
8+
busybox \
99
curl \
10+
gdb \
1011
git \
11-
graphviz \
12-
man \
12+
man-db \
1313
ssh-client
1414

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+
1519
# Copy in the default bash configuration
1620
COPY terminal-config /root/terminal-config
1721
ENV USER_TERMINAL_CONFIG=/user-terminal-config

0 commit comments

Comments
 (0)