fix(cmd): remove unnecessary CMD in Dockerfile

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.
This commit is contained in:
Tuna Alikaşifoğlu 2023-02-21 17:09:55 +03:00
parent 8059a02b4b
commit 7673367341
No known key found for this signature in database
GPG Key ID: 16FE1DF5037D8B61

View File

@ -33,4 +33,3 @@ COPY . /root/.config/nvim
RUN nvim --headless "+Lazy! install" +"MasonInstall ${LSP_LIST}" +qa
RUN nvim --headless +"TSUpdateSync ${TS_LIST}" +qa
CMD [ "/bin/bash" ]