Skip to content

Instantly share code, notes, and snippets.

@nealey
Created August 4, 2017 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nealey/27917b7c04f39e0f321704c56318d374 to your computer and use it in GitHub Desktop.
Save nealey/27917b7c04f39e0f321704c56318d374 to your computer and use it in GitHub Desktop.
Complete system for Cyber Fire net-re class
FROM alpine
RUN apk --no-cache add tmux sudo vim less
RUN echo 'ALL ALL=NOPASSWD: ALL' | tee /etc/sudoers.d/house-is-a-rockin
WORKDIR /usr/local/src
RUN apk --no-cache add build-base git
RUN git clone https://github.com/dirtbags/fluffy
RUN make -C fluffy install DESTDIR=/usr/local
RUN apk --no-cache add python3
RUN apk --no-cache add file
RUN apk --no-cache add tcpdump tcpflow
ENV SHELL=/bin/sh
WORKDIR /
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment