├── .dockerignore ├── Dockerfile ├── README.md └── setup.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | setup.sh 2 | .git* 3 | README.md 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boogy/ctfbox/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boogy/ctfbox/HEAD/README.md -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boogy/ctfbox/HEAD/setup.sh --------------------------------------------------------------------------------