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.
pull/186/head
Tuna Alikaşifoğlu 2 years ago
parent 8059a02b4b
commit 7673367341
No known key found for this signature in database
GPG Key ID: 16FE1DF5037D8B61

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

Loading…
Cancel
Save