Last active
February 17, 2025 02:13
-
-
Save anhhung04/20d839c3d7ef61f5c7f07de721bf7f26 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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