This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker build -t charles . && docker run -it --rm charles /bin/sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download latest neovim release from GitHub releases and pipe it to tar to extract it to /usr | |
curl -sL https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz \ | |
| sudo tar -xzf - --strip-components=1 --overwrite -C /usr | |