├── .circleci └── config.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── bin └── shellgeibot-image ├── docker_image.bats ├── egison ├── .gitignore ├── Dockerfile ├── Makefile └── build.sh ├── get_build_log.sh ├── prefetch_files.sh └── prefetched ├── .gitignore └── mecab-ipadic ├── .gitignore └── sha1sum.txt /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ShellgeiBot-Image/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ShellgeiBot-Image/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ShellgeiBot-Image/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ShellgeiBot-Image/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ShellgeiBot-Image/HEAD/README.md -------------------------------------------------------------------------------- /bin/shellgeibot-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ShellgeiBot-Image/HEAD/bin/shellgeibot-image -------------------------------------------------------------------------------- /docker_image.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ShellgeiBot-Image/HEAD/docker_image.bats -------------------------------------------------------------------------------- /egison/.gitignore: -------------------------------------------------------------------------------- 1 | *.tar.gz 2 | -------------------------------------------------------------------------------- /egison/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ShellgeiBot-Image/HEAD/egison/Dockerfile -------------------------------------------------------------------------------- /egison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ShellgeiBot-Image/HEAD/egison/Makefile -------------------------------------------------------------------------------- /egison/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ShellgeiBot-Image/HEAD/egison/build.sh -------------------------------------------------------------------------------- /get_build_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ShellgeiBot-Image/HEAD/get_build_log.sh -------------------------------------------------------------------------------- /prefetch_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ShellgeiBot-Image/HEAD/prefetch_files.sh -------------------------------------------------------------------------------- /prefetched/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | *.gz 3 | -------------------------------------------------------------------------------- /prefetched/mecab-ipadic/.gitignore: -------------------------------------------------------------------------------- 1 | *.tar.gz 2 | -------------------------------------------------------------------------------- /prefetched/mecab-ipadic/sha1sum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theoremoon/ShellgeiBot-Image/HEAD/prefetched/mecab-ipadic/sha1sum.txt --------------------------------------------------------------------------------