* Use a multi-stage Dockerfile to improve readability * Add a .dockerignore file to avoid useless re-building * Remove rz-ghidra from container, at least for now. It does not work right now and ideally rz-ghidra should be compiled in the stage 0 and moved into /tmp/rizin-install, however rz-pm currently cannot easily do this. Things are too messy on the rz-pm side right now, so better to review once plugins will be easier to handle. * Update Dockerfile
47 lines
No EOL
527 B
Text
47 lines
No EOL
527 B
Text
.git
|
|
.cache
|
|
.vscode
|
|
.idea
|
|
.ccls-cache/
|
|
.vs
|
|
cscope.out
|
|
compile_commands.json
|
|
clang-log/
|
|
.#*
|
|
*._d
|
|
*._o
|
|
*.[ado]
|
|
*.so
|
|
*.pc
|
|
*.sdb
|
|
*.dylib
|
|
*.dll
|
|
*.lib
|
|
*.obj
|
|
*.ilk
|
|
*.dSYM
|
|
supported.*
|
|
config.mk
|
|
plugins.cfg
|
|
langs.cfg
|
|
.test.c
|
|
.*.swp
|
|
.*.swo
|
|
*.un~
|
|
*.pdb
|
|
*.lib
|
|
*.ilk
|
|
**/*.o
|
|
build*
|
|
test/.tmp/*
|
|
subprojects/capstone-*/
|
|
!subprojects/capstone-*.wrap
|
|
subprojects/libuv-*/
|
|
subprojects/libzip-*/
|
|
subprojects/lz4-*/
|
|
subprojects/packagecache/
|
|
subprojects/sdb/
|
|
subprojects/tree-sitter-*/
|
|
!subprojects/tree-sitter-*.wrap
|
|
subprojects/zlib-*/
|
|
Dockerfile |