Skip to content

Commit

Permalink
feat: Add Debian Dockerfile with required tools
Browse files Browse the repository at this point in the history
  • Loading branch information
cbluebird committed Sep 3, 2024
1 parent b989d74 commit ce47337
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions system/Dockerfile → OS/debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use a base image with the specified platform
FROM ubuntu:latest
FROM debian:stable-slim

# Update apt sources and install required tools
RUN apt update && \
Expand All @@ -8,10 +8,15 @@ RUN apt update && \
iproute2 \
iputils-ping \
curl \
sudo \
netcat-openbsd \
vim \
openssl \
make \
git && \
mkdir -p /usr/start && \
# Clean up apt cache
apt clean
apt clean

# Entry point (modifiable as needed)
CMD ["/bin/bash"]

0 comments on commit ce47337

Please sign in to comment.