Skip to content

Commit

Permalink
One package per run for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdfrench committed Jul 20, 2024
1 parent f0f2031 commit 18f1515
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
FROM debian:bookworm

# Install necessary tools and dependencies
RUN apt-get update && apt-get install -y \
build-essential \
gdb \
git \
&& rm -rf /var/lib/apt/lists/*

RUN apt-get update
RUN apt-get install -y vim

# This gives us the 'column' command
RUN apt-get install -y bsdextrautils
RUN apt-get install -y build-essential
RUN apt-get install -y gdb
RUN apt-get install -y bsdextrautils # This gives us the 'column' command
RUN apt-get install -y time
RUN apt-get install -y man-db
RUN apt-get install -y checksec

# Install and configure vim
RUN apt-get install -y vim
RUN printf "set textwidth=80\nsyn on\n" > /root/.vimrc

# Set the working directory in the container
Expand Down

0 comments on commit 18f1515

Please sign in to comment.