From 4526a9065f31c9958076ba710645631bfc04ebab Mon Sep 17 00:00:00 2001 From: Nick Trochalakis Date: Thu, 19 Jun 2025 05:04:22 -0700 Subject: [PATCH] Create Dockerfile --- containers/debian-sandbox/Dockerfile | 29 ++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 containers/debian-sandbox/Dockerfile diff --git a/containers/debian-sandbox/Dockerfile b/containers/debian-sandbox/Dockerfile new file mode 100644 index 0000000..34d0283 --- /dev/null +++ b/containers/debian-sandbox/Dockerfile @@ -0,0 +1,29 @@ +# Use the latest Debian slim image +FROM debian:bullseye-slim + +# Set environment to non-interactive for apt +ENV DEBIAN_FRONTEND=noninteractive + +# Install common tools +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + bash \ + curl \ + vim \ + nano \ + dnsutils \ + iputils-ping \ + net-tools \ + procps \ + ca-certificates && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* + +# Set the default shell +SHELL ["/bin/bash", "-c"] + +# Set working directory +WORKDIR /root + +# Set the default command to an interactive shell +CMD [ "bash" ]