The `CMD [ "/bin/bash/" ]` command in the last line of
`Dockerfile` is unnecessary. This can be changed with
`CMD [ "nvim" ]` for direct nvim start. However, with this setup it may
not be possible to exit and re-enter Neovim without quitting the
container.
The base image is changed from `anatolelucet/neovim` to `ubuntu:latest`
to fix the installation issue of `lua_ls`. With this change, manual
installation of NeoVim became necessary. It is handled by `tar` binary
installation method. Branch name can be changed in the `Dockerfile`. In
addition headless commands are fixed to wait for installation of
desired LSP list and TS list.
Fixes#1