Skip to content

Instantly share code, notes, and snippets.

@anhhung04
Last active February 17, 2025 02:13
Show Gist options
  • Select an option

  • Save anhhung04/20d839c3d7ef61f5c7f07de721bf7f26 to your computer and use it in GitHub Desktop.

Select an option

Save anhhung04/20d839c3d7ef61f5c7f07de721bf7f26 to your computer and use it in GitHub Desktop.
FROM ubuntu:latest
RUN apt-get update && apt-get install -y \
curl \
wget \
git \
vim \
nano \
less \
unzip \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /data
COPY --from=source / /data
ENTRYPOINT [ "/bin/bash" ]
# docker build -t foren-img:latest -f Dockerfile .
# docker run --name foren-img-container --rm -d foren-img:latest
# docker exec -it foren-img-container sh
#forensic box
# docker run --name forensic-box -d -v .\materials:/working/materials -p8080:8080 hah4/forensic-box
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment