Complete system for Cyber Fire net-re class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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